Ruby on Rails:缩小或压缩 Javascript 文件?

发布于 2024-12-03 08:42:33 字数 366 浏览 0 评论 0原文

目前我的 中有这个,

<%= javascript_include_tag 'jquery-1.6.3.min', 'jquery.form', 'jquery.validate', 'script', :concat => true %>

这意味着 Rails 会生成一个 all.js 文件,其中包含所有 js 文件。

Rails 中是否有某种方法可以缩小或压缩 js 文件?我的意思是去掉注释、空格,无论 js 压缩器通常做什么。我只是很好奇,因为有了这样的自动压缩,我就不必每次更改某些内容时都手动压缩 js 文件。

对此有什么想法吗?

Currently there is this in my <head>

<%= javascript_include_tag 'jquery-1.6.3.min', 'jquery.form', 'jquery.validate', 'script', :concat => true %>

This means Rails produces an all.js File with all js-files combined in it.

Is there some way in Rails to also minify or compress the js files? I mean like getting rid of comments, whitespace, whatever a js compressor typically does. I'm just curious because with an automated compression like this I wouldn't have to manually compress the js files each time I change something.

Any ideas on that?

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

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

发布评论

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

评论(1

雨的味道风的声音 2024-12-10 08:42:33

您可以使用 sprockets (默认情况下在 Rails 3.1+ 中)或 jammit

You could do that using sprockets (by default in Rails 3.1+) or jammit

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