HTML5 Boilerplate:script.js 和plugins.js 之间的区别?

发布于 2024-10-28 20:08:04 字数 112 浏览 2 评论 0原文

我在样板文档中找不到任何明确的答案,但是有人可以澄清plugins.js 和 script.js 之间的区别吗?我是一名 javascript 新手,我很想将所有脚本放在一个文件中...有充分的理由不这样做吗?

i can't find any definitive answer on the boilerplate docs, but can someone clarify the difference between plugins.js, and script.js? i'm a javascript newbie, and am tempted to just put all my scripts in one file... is there a good reason not to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

黄昏下泛黄的笔记 2024-11-04 20:08:04

来自 常见问题解答

Script.js 应保存您的主要应用程序脚本。将其存储在 对象文字中并执行可能是有意义的它基于身体类别

我自己用于 jQuery 插件和其他第 3 方脚本的插件。我将 jQuery 插件放在 (function($){ ... })(jQuery); 闭包中,以确保它们位于 jQuery 命名空间安全毯中,特别是如果它们是由更多业余开发者。另请参阅 jQuery 插件创作

From the FAQ:

Script.js should hold your primary application script. It might make sense to store it in an object literal and execute it based on body classes.

Plugins I use for jQuery plugins and other 3rd party scripts myself. I put the jQuery plugins inside of the (function($){ ... })(jQuery); closure to make sure they're in the jQuery namespace safety blanket, especially if they were written by more amateur developers. See also jQuery Plugin Authoring.

柒夜笙歌凉 2024-11-04 20:08:04

plugins.js 文件中,您捆绑了很少的帮助程序,它可能意味着包含您根本不会修改的内容(或至少不会经常修改),而 script.js 是一个可供您使用的文件...是的,脚本。 ;)

你所说的是真的 - 在生产中,通常最好为浏览器提供一个文件而不是多个文件。然而,在开发过程中,将事物分开会更容易。
这就是为什么样板附带一个构建脚本的原因,它将所有脚本组合成一个,因此您不必担心这一点。

in plugins.js file you get few helpers bundled, it's probably meant to include stuff you won't modify at all (or at least not so often), while script.js is a file ready for your... yes, scripts. ;)

what you said is true - in production, it's usually better to serve the browser one file instead of many. however in development it's easier to keep things separated.
that's the reason why boilerplate comes with a build script, which combines all your scripts into one so you don't have to worry about this.

无言温柔 2024-11-04 20:08:04

在脚本中 ->您的自定义脚本
在插件中->别碰它!

在构建过程中,两个文件合并成一个唯一的压缩文件......

in scripts -> your custom scripts
in plugings -> don't touch it!

In build process both files unite into one unique and compressed file...

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