我目前正在登台环境(heroku)中进行测试,我让测试人员使用回形针为他们的个人资料上传 imgs。但是,每当我向 heroku 执行 git push 以更新站点(不更改数据库)时,他们的图片就会消失。有谁知道为什么会发生这种情况以及我如何解决这个问题?
这是我的回形针配置:
has_attached_file :photo, :styles => {:thumb => "115x100#", :medium => "345x300#", :large => "690x600#"},
:path => ":rails_root/public/system/:attachment/:id/:style/:filename",
:url => "/system/:attachment/:id/:style/:filename"
production.rb 配置:
config.serve_static_assets = true
config.assets.compile = false
谢谢。