使用Paperclip从Zip文件上传到Amazon S3

时间:2014-02-14 14:38:51

标签: ruby-on-rails amazon-s3 paperclip

我正在尝试使用回形针上传图片。但图像存储在zip文件夹中。

imagepath = "#{Rails.root}/app/assets/game_contents/pictures.zip"
        zip = Zip::ZipFile.open(imagepath) 
        image = zip.find_entry fileName
        gameContent.task_photo = image
        gameContent.save

我收到了这个错误:

Paperclip::AdapterRegistry::NoHandlerError: No handler found for #<Zip::ZipEntry

image = zip.find_entry fileName可能不是图像。也许它只是一个字符串? 如果是,那么正确的方法是什么? 感谢

0 个答案:

没有答案