I have these classes:
class User
has_one :user_profile
accepts_nested_attributes_for :user_profile
attr_accessible :email, :password, :password_confirmation, :user_profile_attributes
end
class UserProfile
has_one :contact, :as => :contactable
belongs_to :user
accepts_nested_attributes_for :contact
attr_accessible :first_name,:last_name, :contact_attributes
end
class Contact
belongs_to :contactable, :polymorphic => true
attr_accessible :street, :city, :province, :postal_code, :country, :phone
end
I’m trying to insert a record into all 3 tables like this:
consumer = User.create!(
[{
:email => 'consu@a.com',
:password => 'aaaaaa',
:password_confirmation => 'aaaaaa',
:user_profile => {
:first_name => 'Gina',
:last_name => 'Davis',
:contact => {
:street => '221 Baker St',
:city => 'London',
:province => 'HK',
:postal_code => '76252',
:country => 'UK',
:phone => '2346752245'
}
}
}])
A record gets inserted into users table, but not into the user_profiles or contacts tables. No error occurs either.
What’s the right way to do such a thing?
SOLVED
(thanks @Austin L. for the link)
params = { :user =>
{
:email => 'consu@a.com',
:password => 'aaaaaa',
:password_confirmation => 'aaaaaa',
:user_profile_attributes => {
:first_name => 'Gina',
:last_name => 'Davis',
:contact_attributes => {
:street => '221 Baker St',
:city => 'London',
:province => 'HK',
:postal_code => '76252',
:country => 'UK',
:phone => '2346752245'
}
}
}
}
User.create!(params[:user])
Your user model needs to be setup to accept nested attributes via
accepts_nested_attributesSee the Rails documentation for more info and examples: http://api.rubyonrails.org/classes/ActiveRecord/NestedAttributes/ClassMethods.html
Edit: Also you might want to consider using
has_one :contact, :through => :user_profilewhich would allow you to access the contact like this:@contact = User.first.contact.Edit 2: After playing around inrails cthe best solution I can find is this:Edit 3: See the question for a better solution.