我正在使用paperclip将图像附加到我的rails应用程序中的商品。代码在开发中工作,但不在分段中。在暂存中,图像正确保存到s3,但image_file_name
为零。
分贝/迁移/ 20130507182116_add_image_to_offers.rb
class AddImageToOffers < ActiveRecord::Migration
def self.up
add_attachment :offers, :image
end
def self.down
remove_attachment :offers, :image
end
end
应用/模型/ offer.rb
class Offer < ActiveRecord::Base
attr_accessor :image
has_attached_file :image, styles: {
thumb: '100x100>',
square: '200x200#',
medium: '300x300>'
}
当我在开发模式下运行以下配置时,它可以工作,当我切换到分段时,我收到以下错误:
Paperclip::Error (Offer model missing required attr_accessor for 'image_file_name'):
如果我将attr_accessor :image_file_name
添加到它完成的模型,图像保存到s3,但数据库中的属性为nil
。
答案 0 :(得分:1)
请务必迁移您的数据库。此外,如果您使用的是heroku,则需要重新启动该服务:model missing required attr_accessor for 'photo_file_name' when uploading with paperclip and S3 on heroku