Mongoid(Rails)中的两个1 - N关系

时间:2011-06-18 06:23:20

标签: ruby-on-rails mongoid database-relations

方案是:

帐户如何为其他帐户评分?这导致帐户上有两个列表。我评价的人和评价我的人。 (my_ratings和ratings_given)

归结为:

如何在同一实体中使用多个1-N关系在Mongoid中工作?

In Mongoid's Docs它说您可以使用has_manybelongs_to将实体链接在一起。

我目前在帐户

上有此功能
  has_many :ratings, :as => "my_ratings"
  has_many :ratings, :as => "ratings_given"

评分

 belongs_to :user, :as => 'Rater'
 belongs_to :user, :as => 'Ratie'

文档没有涵盖这种情况,所以我认为你必须用:作为参数区分两者。

这甚至是远程正确吗?

1 个答案:

答案 0 :(得分:18)

您可以使用class_name和inverse_of选项实现所需目的:

class Account
  include Mongoid::Document
  field :name
  has_many :ratings_given, :class_name => 'Ratings', :inverse_of => :rater
  has_many :my_ratings, :class_name => 'Ratings', :inverse_of => :ratee
end

class Ratings
  include Mongoid::Document
  field :name
  belongs_to :rater, :class_name => 'Account', :inverse_of => :ratings_given
  belongs_to :ratee, :class_name => 'Account', :inverse_of => :my_ratings
end

自从我上次使用它以来,文档已经发生了变化,所以我不确定这是否仍然是推荐的方法。看起来它没有在1-many referenced page上提及这些选项。但是,如果您查看relations上的常规页面,就可以了解它们。

在任何情况下,当同一个类有两个关联时,你需要显式链接ratings_given / rater和my_ratings / ratee关联,否则mongoid无法知道要选择哪两个潜在的反转。