0

当我在 Rails 中更改 javascript 文件并刷新页面时,但没有更改。

为什么?我什至重新启动服务器。但仍然无法正常工作。

这种情况是在我执行命令时引起的:

RAILS_ENV=production bundle exec rake assets:precompile
4

1 回答 1

1

添加它/config/environment/development.rb,这将在 DEV 模式下工作,对于生产模式,您应该预编译资产并关闭此设置。

所以只适用于DEV模式

  # Don't fallback to assets pipeline if a precompiled asset is missed
  config.assets.compile = true
于 2013-11-07T09:09:55.413 回答