我是否需要将资产打包程序与 Ruby on Rails 一起使用?

发布于 2024-09-24 15:18:25 字数 168 浏览 2 评论 0原文

我正在研究 Rails 的资产打包器 gem。我发现Rails 在包含标签助手的cache=>"all" 选项中有针对这个问题的原生解决方案。关于这是否足够好也存在一些讨论,并且像 Jammit 这样的宝石也有其顽固的捍卫者。如果有打包 javascript 资源的原生解决方案,为什么我们还需要资源打包器 gem?

I am researching asset packager gems for Rails. I found out that Rails has its native solution to this problem in the cache=>"all" option on the include tag helpers. There is also some discussion about whether this is good enough, and some gems like Jammit have their diehard defenders. If there is a native solution to packaging javascript assets, why do we need an asset packager gem?

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

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

发布评论

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

评论(1

饮湿 2024-10-01 15:18:25

使用 :cache 选项参与的本机资源打包程序仅连接 JavaScript 和 CSS 文件,但不会缩小它们。其他包装商可能在这方面走得更远。

使用本机打包程序和 gzip 压缩往往会产生与完全缩小的打包程序相当的结果,但永远不会优于它。

The native asset packager, which is engaged using the :cache option, only concatenates the JavaScript and CSS files, but doesn't minify them. Other packagers may go further in this regard.

Using the native packager and gzip compression tends to produce results comparable to, yet never superior to, a fully minified packager.

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