class User
has_one :profile, :inverse_of => :user
end
class Profile
belongs_to :user
end
u = User.create
p = u.create_profile
u = User.last
p = u.profile
在這里 其實 p.user 就是u 如果沒有加入inverse_of 就要查詢數(shù)據(jù)庫 如果u更改了 則 p 要reload 通過查詢object_id可知