Mongoid(Rails)中的两个 1 - N 关系
Posted
技术标签:
【中文标题】Mongoid(Rails)中的两个 1 - N 关系【英文标题】:Two 1 - N relations in Mongoid (Rails) 【发布时间】:2011-09-17 16:01:27 【问题描述】:场景是:
一个帐户如何给另一个帐户评分?这会导致帐户上有两个列表。我评价过的人和评价过我的人。 (my_ratings 和 rating_given)
归结为:
多个 1 - N 关系如何在 Mongoid 中对同一个实体起作用?
In Mongoid's 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 参数来区分两者。
这甚至远程正确吗?
【问题讨论】:
【参考方案1】:您可以使用 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 无法知道要选择两个潜在逆向中的哪一个。
【讨论】:
重要的是要注意,当您有多个关系时,都必须在双方都获得一个 :inverse_of 声明。否则 mongoid 会混淆。以上是关于Mongoid(Rails)中的两个 1 - N 关系的主要内容,如果未能解决你的问题,请参考以下文章
如何将内存中的 MongoDB 与 Rails、Mongoid 和 Rspec 一起使用?