How to configure Rails 3.2+/4 to generate .js instead of .js.coffee by default?(如何配置 Rails 3.2+/4 默认生成 .js 而不是 .js.coffee?)
问题描述
我已经看到这个问题的许多变体,其中所有答案都只是建议从 Gemfile
中删除 coffee-rails
gem(这个和这个).
I have seen a number of variations of this question where all the answers simply suggest removing the coffee-rails
gem from the Gemfile
(this one and this one).
这不是我要寻找的答案.我可能仍然想在项目中编写一些 CoffeeScript,我只是希望 JavaScript (.js
) 成为 Rails 生成器的默认值.
This is not the answer that I am looking for. I may still want to write some CoffeeScript in the project, I just want JavaScript (.js
) to be the default for the Rails generators.
这也意味着 将 .js.coffee
重命名为 .js
每次我生成代码的建议不是一个理想的解决方案.
This also means the suggestions to rename .js.coffee
to .js
every time I generate code is not a desirable solution.
我可以更改 Rails 中的某种配置以使 .js
成为默认配置,但仍然启用 CoffeeScript(资产管道应该仍然能够转译 .js.coffee
我可以写的文件)?
Is there some sort of configuration in Rails I can change to make .js
the default, but still leave CoffeeScript enabled (Asset Pipeline should still be able to transpile an .js.coffee
files that I may write)?
推荐答案
你可以通过 自定义生成器配置.
config.generators do |g|
g.javascript_engine :js
end
# or
config.generators.javascript_engine = :js
您可以在这里查看更多可用的配置选项.
这篇关于如何配置 Rails 3.2+/4 默认生成 .js 而不是 .js.coffee?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何配置 Rails 3.2+/4 默认生成 .js 而不是 .js.coffee?
基础教程推荐
- 我什么时候应该在导入时使用方括号 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06
- 动态更新多个选择框 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01