我最近更改了Paperclip配置:
新配置:
has_attached_file :scr, :styles => { :index => "215x165#", :show => "900" },
processors: [:thumbnail, :compression],
:content_type => { :content_type => ["image/jpg", "image/png"] }
旧配置:
has_attached_file :scr, :styles => { :index => "215x165#
要在我的应用程序上显示我需要的图片,请使用:show
属性。
问题我的应用已经有很多图片,在更改配置后,图片不再可见(因为上传时裁剪和配置已完成)。
有没有办法重新保存这些图片?
我试过
Screen.find_each(&:save)
其中“屏幕”图片,但它不起作用。
我缺少什么?
答案 0 :(得分:1)
尝试运行rake paperclip:refresh CLASS=Screen