根据文档,:autosave => false
当您保存父级时,关联设置不应保存这些关联。这似乎对我不起作用。我刚刚创建了一个香草 Rails 3.0.8 应用程序,这就是我得到的:
class Foo < ActiveRecord::Base
has_many :bars, :autosave => false
accepts_nested_attributes_for :bars
end
class Bar < ActiveRecord::Base
belongs_to :foo
end
f = Foo.new :name => 'blah', :bars_attributes => [{:name => 'lah'},{:name => 'lkjd'}]
f.save
f.bars
=> [#<Bar id: 1, name: "lah", foo_id: 1, created_at: "2011-06-20 20:51:02", updated_at: "2011-06-20 20:51:02">, #<Bar id: 2, name: "lkjd", foo_id: 1, created_at: "2011-06-20 20:51:02", updated_at: "2011-06-20 20:51:02">]
什么??为什么救了bars
?
我觉得我正在服用疯狂的药丸!!我错过了什么?
更新:看起来好像accepts_nested_attributes_for
自动保存子项,即使它们不是使用嵌套属性功能构建的。它认为这是一个错误。