Как сделать db: посеять модель и все ее вложенные модели?
У меня есть эти классы:
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
Я пытаюсь вставить запись во все 3 таблицы следующим образом:
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'
}
}
}])
Запись вставляется в users
стол, но не в user_profiles
или же contacts
столы. Никаких ошибок не происходит.
Как правильно сделать такую вещь?
Решено(спасибо @Austin L. за ссылку)
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])
1 ответ
Ваша пользовательская модель должна быть настроена на прием вложенных атрибутов через accepts_nested_attributes
См. Rails документацию для получения дополнительной информации и примеров: http://api.rubyonrails.org/classes/ActiveRecord/NestedAttributes/ClassMethods.html
Изменить: Также вы можете рассмотреть возможность использования has_one :contact, :through => :user_profile
что позволит вам получить доступ к контакту, как это: @contact = User.first.contact
,
Изменить 2: после игры в rails c
лучшее решение, которое я могу найти, это:
@c = Contact.new(#all of the information)
@up = UserProfile.new(#all of the information, :contact => @c)
User.create(#all of the info, :user_profile => @up)
Изменить 3: Смотрите вопрос для лучшего решения.