在本例中,我创建了一个没有 profile
的 user
,然后为该用户创建了一个 profile
。我尝试使用构建与 has_one
关联,但它爆炸了。我认为唯一的工作方式是使用 has_many
。user
应该最多只有一个 profile
。
我已经试过了,我试过了:
class User < ActiveRecord::Base
has_one :profile
end
class Profile < ActiveRecord::Base
belongs_to :user
end
但是当我这么做的时候:
user.build_profile
我得到了一个错误:
ActiveRecord::StatementInvalid: Mysql::Error: Unknown column 'profiles.user_id' in 'where clause': SELECT * FROM `profiles` WHERE (`profiles`.user_id = 4) LIMIT 1
有没有一种方法在轨道有0或1的关联?