77

我试图了解has_oneRoR 中的关系。

假设我有两个模型 -PersonCell

class Person < ActiveRecord::Base
  has_one :cell
end

class Cell < ActiveRecord::Base
  belongs_to :person
end

我可以只使用has_one :person而不是belongs_to :personCell模型中使用吗?

不一样吗?

4

3 回答 3

179

不,它们不可互换,并且存在一些真正的差异。

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

对于双向关联,您需要每个关联,并且他们必须进入正确的班级。即使对于单向关联,使用哪一个也很重要。

于 2009-05-14T06:51:14.077 回答
15

如果您添加“belongs_to”,那么您将获得双向关联。这意味着您可以从牢房中获取一个人,从该人那里获取一个牢房。

没有真正的区别,两种方法(有和没有“belongs_to”)都使用相同的数据库模式(单元数据库表中的 person_id 字段)。

总结一下:除非您需要模型之间的双向关联,否则不要添加“belongs_to”。

于 2009-05-14T01:52:30.237 回答
7

使用这两者可以让您从 Person 和 Cell 模型中获取信息。

@cell.person.whatever_info and @person.cell.whatever_info.
于 2009-05-14T01:31:39.460 回答