6

场景是:

一个帐户如何给另一个帐户评分?这会导致帐户上有两个列表。我评价过的人和评价过我的人。(my_ratings 和 rating_given)

这归结为:

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

在 Mongoid 的文档中,它说您可以使用has_many并将belongs_to实体链接在一起。

我目前在帐户上有这个

  has_many :ratings, :as => "my_ratings"
  has_many :ratings, :as => "ratings_given"

这在评级

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

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

这甚至远程正确吗?

4

1 回答 1

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上提及这些选项。但是,如果您查看有关关系的一般页面,它们就会被覆盖在那里。

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

于 2011-06-18T08:45:31.793 回答