在Heroku部署时,无法加载 css,js,图片资源解决办法
解决方案:
首先查看Gemfile, 确保group :production do 里添加了 gem "rails_12factor", ‘0.0.2‘
然后在本地执行 rails s -e production 查看是否正常
若本地不正常则执行 rake assets:precompile
然后修改 config/environments/production.rb, 将config.serve_static_assets = false 值改为 true, 让服务器支持静态文件的发送, 当你使用nginx或者apache发布时, 请将此项修改为false, 因为这些服务器解析静态文件的效率会高些
最后执行heroku run rake assets:precompile
------------------------------------------------
也有人是因为没清理assets
RAILS_ENV=production bundle exec rake assets:clean
RAILS_ENV=production bundle exec rake assets:precompile
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。