2009-08-21 11 views
1

reject_if procにPaperclip属性が表示されないため、ネストされたオブジェクトフォームを送信すると無効な子オブジェクトを拒否できません。ここでRailsネストされたオブジェクトフォームとpaperclip - paperclip attrsがreject_ifによって無視される

は私のモデルの関連部分&形である:

class Stage < ActiveRecord::Base 
    has_and_belongs_to_many :assets, :uniq => true 
    accepts_nested_attributes_for :assets, :reject_if => lambda { |attrs| attrs['asset'] } 

    ... 
end 

class Asset < ActiveRecord::Base 
    has_attached_file :asset, :path => "#{Rails.root}/public/:attachment/:id/:style/:basename.:extension", 
          :url => ":attachment/:id/:style/:basename.:extension" 
    validates_attachment_presence :asset 
end 

- form_for [@campaign, @stage], :html => {:multipart => true} do |f| 
.... 
    - f.fields_for :assets do |asset_form| 
    - field_set_tag do 
     - if asset_form.object.new_record? 
     %h4 New Asset 
     %p 
     = asset_form.label :asset, "File" 
     %br 
     = asset_form.file_field :asset 
     %p 
     = asset_form.label :identifier 
     %br 
     = asset_form.text_field :identifier 

私はreject_if部分でデバッガを置く:

(rdb:1) p attrs 
{"identifier"=>""} 

私はそれだけである属性に見えるので、それは思いましたアトリビュートにattr_accessorを追加して見つけたように、それはどちらでもありません。

p attrs 
{"misc_attr"=>"", "identifier"=>""} 

私は奇妙なことを続けることができます& outsしかし、私はそこにこれを取得し、誰が前にこの問題を抱えていたのか見たいと思います。

答えて

0

私はこれがポイントであれば知っているが、資産クラスのようなStageクラスへの関連付けを宣言する行があるshouldn'tません:

class Asset < ActiveRecord::Base 
    has_and_belongs_to_many :stages 

関連する問題