场景是:
一个帐户如何对另一个帐户进行评级?这将在帐户上产生两个列表。我评价过的人和评价过我的人。(my_ratings and ratings_given)
这可以归结为:
同一实体的多个1-N关系如何在Mongoid中工作?
在Mongoid的Docs中,它说可以使用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参数来区分两者。
这是正确的吗?
您可以使用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个月的参考页面上。但如果你看一看关于关系的普通页面,就会发现它们在那里。
在任何情况下,当同一类有两个关联时,您都需要显式地将ratings_given/rater和my_ratings/ratee关联链接起来,否则mongoid无法知道要选择两个潜在反转中的哪一个。