我试图了解has_one
RoR 中的关系。
假设我有两个模型 -Person
和Cell
:
class Person < ActiveRecord::Base
has_one :cell
end
class Cell < ActiveRecord::Base
belongs_to :person
end
我可以只使用has_one :person
而不是belongs_to :person
在Cell
模型中使用吗?
不一样吗?
我试图了解has_one
RoR 中的关系。
假设我有两个模型 -Person
和Cell
:
class Person < ActiveRecord::Base
has_one :cell
end
class Cell < ActiveRecord::Base
belongs_to :person
end
我可以只使用has_one :person
而不是belongs_to :person
在Cell
模型中使用吗?
不一样吗?
不,它们不可互换,并且存在一些真正的差异。
belongs_to
表示外键在这个类的表中。所以belongs_to
只能进入持有外键的类。
has_one
表示在另一个表中存在引用此类的外键。所以has_one
只能进入另一个表中的列引用的类。
所以这是错误的:
class Person < ActiveRecord::Base
has_one :cell # the cell table has a person_id
end
class Cell < ActiveRecord::Base
has_one :person # the person table has a cell_id
end
这也是错误的:
class Person < ActiveRecord::Base
belongs_to :cell # the person table has a cell_id
end
class Cell < ActiveRecord::Base
belongs_to :person # the cell table has a person_id
end
正确的方法是(如果Cell
包含person_id
字段):
class Person < ActiveRecord::Base
has_one :cell # the person table does not have 'joining' info
end
class Cell < ActiveRecord::Base
belongs_to :person # the cell table has a person_id
end
对于双向关联,您需要每个关联,并且他们必须进入正确的班级。即使对于单向关联,使用哪一个也很重要。
如果您添加“belongs_to”,那么您将获得双向关联。这意味着您可以从牢房中获取一个人,从该人那里获取一个牢房。
没有真正的区别,两种方法(有和没有“belongs_to”)都使用相同的数据库模式(单元数据库表中的 person_id 字段)。
总结一下:除非您需要模型之间的双向关联,否则不要添加“belongs_to”。
使用这两者可以让您从 Person 和 Cell 模型中获取信息。
@cell.person.whatever_info and @person.cell.whatever_info.