Codeigniter 中 Symfony 的 use_javascript 等价于什么?

发布于 2024-10-07 19:21:24 字数 302 浏览 2 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

攒眉千度 2024-10-14 19:21:24

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文