我正在尝试使用Paperclip上传一个有很多的图像并且属于与'pictures'的关系
我确定imagemagick等正确安装,因为我在这个项目中有更多的图像上传工作,不同的是这个有很多关系。
我没有在控制台中获得“保存附件”。所以我的想法是强参数完全忽略了这一点。
在topicscontroller中:
params.require(:topic).permit(:id, :title, :content, :active, pictures_attributes: [:image, :id, :_destroy] )
在主题模型中:
has_many :pictures, dependent: :destroy
accepts_nested_attributes_for :pictures, allow_destroy: true
validates :title, :content, presence: true
图片模型:
belongs_to :topic
has_attached_file :image,
:styles => { :medium => "400x400#", :thumb => "200x200#", :small => "50x50#" },
:default_url => ActionController::Base.helpers.asset_path('missing.png')
我知道还有很多关于此问题的其他主题,只有所有内容都是rails 3,并且设置'attr_accessible'的方式不同
答案 0 :(得分:2)
对于Paperclip的3.5.0版本,Rails 4的一切都很好。