Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

According to the docs, setting :autosave => false on an association should NOT save those associations when you save the parent. This doesn't appear to work for me. I just created a vanilla Rails 3.0.8 app and here's what I get:

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">]

What?? Why did it save the bars?

I feel like I'm taking crazy pills!! What am I missing?

Update: It appears as if accepts_nested_attributes_for automatically saves children, even if they're not built using the nested attributes feature. It think this is a bug.

share|improve this question
What's the output of f.bars.first.new_record? after you run your given code? – Luke Jun 23 '11 at 21:45
i've output f.bars above. It's obvious that new_record? would return false as it's been persisted with an ID. Again this only happens when accepts_nested_attributes_for is used – brad Jun 29 '11 at 18:33

1 Answer

This is not a bug, instead it is intended. see http://api.rubyonrails.org/classes/ActiveRecord/NestedAttributes/ClassMethods.html

A click on "Source: show" on method accepts_nested_attributes_for also proves this.

Note that the :autosave option is automatically enabled on every association that accepts_nested_attributes_for is used for.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.