欢迎来到cool的博客
7

Music box

Click to Start

点击头像播放音乐
新博客链接

解决bug:由development开发模式变成production生产模式(使用的是thin服务器)以后,页面的图片加载不了?

TODO:

bug:

由开发模式变成生产模式以后,页面的图片加载不了?\

解决方法:

1.修改 config/environments/production.rb 文件

config.serve_static_assets = false
修改成
config.serve_static_assets = true

2.在终端中输入这条命令将图片编译一下:

bundle exec rake assets:precompile RAILS_ENV=production

3.重启thin服务器输入

bundle exec thin start -C config/thin.yml

4.刷新页面,图片就显示出来了

返回列表