Codeigniter 中 Symfony 的 use_javascript 等价于什么?
在 Symfony 中,我们可以在视图中使用 use_javascript('myscript')
将 JavaScript 文件添加到数组中。
然后在 template.php 文件中,我们可以使用 include_javascripts()
来回显那些
Codeigniter 中有类似的东西吗?
非常感谢大家。
In Symfony, we can use use_javascript('myscript')
in the view to add a javascript file into the array.
And in the template.php file, we can then use include_javascripts()
to echo those <script type="text/javascript" src="..."></script>
in the array:
Is there something similar in Codeigniter?
Many thanks to you all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
CodeIgniter 中没有这样的东西..但是你可以轻松地编写自己的..它只是一个库,它保存了 javascript 文件的路径数组并将其呈现在你的视图上。
这个家伙做了类似的事情...虽然他使用 smarty 来表达他的观点,但你可以轻松调整并向库中写入额外的视图方法渲染。
There is no such thing in CodeIgniter.. but you could write your own easily.. it's just a library that holds an array of paths to javascript files and renders it on your view.
This guy did something similar... though he uses smarty for his view but you could easily adapt and write an additional render in view method to the library.