我正在尝试使用回形针上传图片。但图像存储在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可能不是图像。也许它只是一个字符串? 如果是,那么正确的方法是什么? 感谢