使用 CodeIgniter 时应该如何组织 javascript

发布于 2024-08-24 10:34:44 字数 143 浏览 8 评论 0原文

我试图在使用 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 技术交流群。

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

发布评论

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

评论(2

傲娇萝莉攻 2024-08-31 10:34:44

尝试使用 phil sturgeon 的模板库

http://github.com/philsturgeon/codeigniter -template/blob/master/libraries/Template.php

添加一个名为 add_js 的方法,并在构建之前将其自身作为变量。在每个控制器中调用此 add_js 方法(如果需要,在每个方法中)并定义要包含的 js。

那么在你看来

<? foreach($js as $item): ?>
<script src="<?=$item?>"></script>
<? endif; ?>

Try using phil sturgeon's template library

http://github.com/philsturgeon/codeigniter-template/blob/master/libraries/Template.php

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

<? foreach($js as $item): ?>
<script src="<?=$item?>"></script>
<? endif; ?>
春花秋月 2024-08-31 10:34:44

您只需在与 system 文件夹同一级别创建一个 js 文件夹即可。然后只需从那里包含您的 JavaScript 文件,就像在任何网页上一样。

You could just create a js folder at the same level as the system folder. Then just include your JavaScript files from there, as you would on any web page.

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