在我的 linux 开发环境中使用 S3 设置回形针非常简单——一切都是开箱即用的。但是,我无法让它在 Heroku 上运行。
当我尝试上传时,日志显示:
Processing ItemsController#create (for 72.177.97.9 at 2010-08-26 16:35:14) [POST]
Parameters: {"commit"=>"Create", "authenticity_token"=>"0Hy3qvQBHE1gvFVaq32HMy2ZIopelV0BHbrSeHkO1Qw=", "item"=>{"photo"=>#<File:/home/slugs/270862_4aa601b_4b6f/mnt/tmp/RackMultipart20100826-6286-1256pvc-0>, "price"=>"342", "name"=>"a new item", "description"=>"a new item", "sold"=>"0"}}
Paperclip::PaperclipError (Item model missing required attr_accessor for 'photo_file_name'):
我发现一篇博客文章引用了这个错误,并说将它添加到我的模型中:
attr_accessor :photo_file_name
attr_accessor :photo_content_type
attr_accessor :photo_file_size
attr_accessor :photo_updated_at
这确实使模型缺少“photo_file_name”错误所需的 attr_accessor 消失了,但它仍然不起作用。有关详细信息,请参阅我的另一个问题。正如我发现的那样,将 attr_accessor 行添加到我的模型中,即使在我的开发系统上上传也会失败,我怀疑这不是正确的答案。