回形针配置|旧附件

时间:2014-01-10 15:56:49

标签: ruby-on-rails ruby-on-rails-4 compression paperclip

我最近更改了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)

其中“屏幕”图片,但它不起作用。

我缺少什么?

1 个答案:

答案 0 :(得分:1)

尝试运行rake paperclip:refresh CLASS=Screen