我试图通过find_or_create
接受一个关联模型。
我有一个旅行模型
class Trip < ActiveRecord::Base
attr_accessible :organiser_attributes
accepts_nested_attributes_for :organiser
belongs_to :organiser, class_name: 'GuestUser', :autosave => true
end
如您所见,每次旅行都属于一个名为“组织者”的
accepts_nested_attributes_for
。class GuestUser < ActiveRecord::Base
attr_accessible :name, :email, :phone
has_many :trips, foreign_key: :organiser_id
end
现在我对
GuestUser
的电子邮件有了唯一性约束(在验证和数据库级别)。所以,如果一个GuestUser创建了两个trips,我希望第二个trip应用于同一个GuestUser记录。我发现了this questions这似乎描述了实现这一目标的方法。然而,我似乎不能让它工作。
在我的
GuestUser
模型中,我添加了:class Trip < ActiveRecord::Base
#other stuff ...
belongs_to :organiser, class_name: 'GuestUser', autosave: true
def autosave_associated_records_for_organiser
# Find or create the organiser by name
if new_organiser = GuestUser.find_by_email(organiser.email) then
self.organiser = new_organiser
else
self.organiser.save!
end
end
end
作为described in the docs。但这次测试:
describe TripsController do
describe "POST create success" do
before :each do
@guest_user = Factory.attributes_for(:guest_user)
@trip = Factory.attributes_for(:trip)
@valid_attr = @trip.merge(organiser_attributes: @guest_user)
end
describe "if the guest user already exists" do
it "should still create a trip" do
GuestUser.create! @guest_user
expect do
post :create, trip: @valid_attr, format: :json
end.to change(Trip, :count).by(1)
end
end
end
end
失败并显示消息:
Failures:
1) TripsController POST create success if the guset user already exists should still create a trip
Failure/Error: expect do
count should have been changed by 1, but was changed by 0
# ./spec/controllers/trips_controller_spec.rb:26:in `block (4 levels) in <top (required)>'
以下是测试日志:
Processing by TripsController#create as JSON
Parameters: {"trip"=>{"price"=>"3456", "origin_departure_time"=>"2011-12-13 18:08:15 +0000", "destination_arrival_time"=>"2011-12-13 20:08:15 +0000", "destination_departure_time"=>"2011-12-13 23:08:15 +0000", "origin_arrival_time"=>"2011-12-13 22:08:15 +0000", "organiser_attributes"=>{"email"=>"[email protected]", "name"=>"Peter Pan", "phone"=>"1234543534"}}}
(0.0ms) SAVEPOINT active_record_1
(0.1ms) SELECT 1 FROM "guest_users" WHERE "guest_users"."email" = '[email protected]' LIMIT 1
(0.0ms) ROLLBACK TO SAVEPOINT active_record_1
Completed 422 Unprocessable Entity in 6ms (Views: 0.3ms | ActiveRecord: 0.1ms)
(0.0ms) SELECT COUNT(*) FROM "trips"
怎么了?顺便说一下,我用的是Rails3.1.3。
最佳答案
通常,您将accepts_nested_attributes_for
放入关系的父模型(也称为关联的拥有类)中,即包含has-many:children语句的模型。
关于ruby-on-rails - 尝试通过accepts_nested_attributes_for查找或创建?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8437071/