我有一些图像要从 移动myBucket/...
到myBucket/someFolder/...
. 我有回形针和 aws-sdk 设置,以便在上传到表单时将新图像放在该位置,但我不知道如何将图像移动到 production.rb 中定义的位置:
config.paperclip_defaults = {
:storage => :s3,
:url => ":s3_eu_url",
:s3_protocol => "https",
:path => ":class/images/000/000/:id/:style/:basename.:extension",
:s3_credentials => {
:bucket => ENV['AWS_BUCKET'],
:access_key_id => ENV['AWS_ACCESS_KEY_ID'],
:secret_access_key => ENV['AWS_SECRET_ACCESS_KEY']
}
}
如何在控制器方法中在远程位置的图像上调用回形针?我想要在我的illustrationController 中有如下内容:
def convert
@illustration = Illustration.find(params[:id])
Paperclip.someMagicMethod(@illustration.image_url)
end
谢谢。