使用 CodeIgniter 时应该如何组织 javascript
我试图在使用 CodeIgniter 时找到 javascript (jquery) 文件的良好组织实践。我做了很多 ajax 站点,并且我的许多视图都加载到各种控制器中,我只想为这些视图加载必要的 javascript,而不需要重复的代码。大家都是怎么处理这个问题的呢?
I'm trying to find a good organization practice of my javascript (jquery) files when using CodeIgniter. I do a lot of ajax sites and many of my views are loaded in various controllers, I'd like to only load the necessary javascript for those views without duplicate code. How do y'all handle this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用 phil sturgeon 的模板库
添加一个名为 add_js 的方法,并在构建之前将其自身作为变量。在每个控制器中调用此 add_js 方法(如果需要,在每个方法中)并定义要包含的 js。
那么在你看来
Try using phil sturgeon's template library
add a method called add_js and have it put itself as a variable just before build. Call this add_js method in each controller (in each method if needed) and define the js you want to be included.
then in your view do
您只需在与
system
文件夹同一级别创建一个js
文件夹即可。然后只需从那里包含您的 JavaScript 文件,就像在任何网页上一样。You could just create a
js
folder at the same level as thesystem
folder. Then just include your JavaScript files from there, as you would on any web page.