4

我的模型描述了段落和图像,其中每个段落都有多个图像。对于图像处理,我使用回形针。对于批量分配,我将图像用作段落的nested_attributes。相关代码:

模型/段落.rb

class Paragraph < ActiveRecord::Base
  has_many :images, :dependent => :destroy
  attr_accessible :text, :images_attributes, :images
  attr_accessor :text
  accepts_nested_attributes_for :images, :allow_destroy => true, :reject_if => proc { |attributes| attributes['photo'].blank? }
end

模型/图像.rb

class Image < ActiveRecord::Base
  belongs_to :paragraph
  has_attached_file :photo, :styles => { :original => '250*250>' }
  attr_accessible :caption, :photo
  attr_accessor :caption
end

paragraph.text 和 image.caption 是临时属性(不在数据库中)。如果我在控制器或 rails 控制台中更新一个段落(假设 id=1 的图像确实属于第一段),则以下内容会按预期更新paragraph.text,但根本不更新image.caption:

Paragraph.first.update_attributes({"text" => "foo", "images_attributes"=>{"0"=>{"caption"=>"bar", "id"=>"1"}}})

但是在不使用回形针的类似设置(嵌套临时属性)中,它可以按预期工作,例如对于页面有多个段落的页面:

Page.first.update_attributes({"paragraphs_attributes"=>{"0"=>{"text"=>"test", "id"=>"1"}}})

这会按预期使用临时文本属性更新页面和嵌套段落的值,这让我猜测,这可能是回形针问题......

任何帮助表示赞赏!谢谢!!!

4

1 回答 1

0

鉴于images_attributes_

{"0"=>{"caption"=>"bar", "id"=>"1"}}

我相信缺少密钥会导致由于调用选项而photo被拒绝。将在未提供时为is ,因此被拒绝。Paragraphreject_ifaccepts_nested_attributes_forattributes['photo']nilnil.blank?true

于 2014-04-18T01:24:07.207 回答