Ruby on Rails:缩小或压缩 Javascript 文件?
目前我的 中有这个,
<%= 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 sprockets (默认情况下在 Rails 3.1+ 中)或 jammit
You could do that using sprockets (by default in Rails 3.1+) or jammit