2

我是 mongoid 的新手,我有两个基本(我认为)问题。什么是在 Mongoid 中存储引用数组的最佳方法。这是我需要的一个简短示例(简单投票):

{
  "_id" : ObjectId("postid"),
  "title": "Dummy title",
  "text": "Dummy text",
  "positive_voters": [{"_id": ObjectId("user1id")}, "_id": ObjectId("user2id")],
  "negative_voters": [{"_id": ObjectId("user3id")}]
}

它是正确的方法吗?

class Person
  include Mongoid::Document
  field :title, type: String
  field :text, type: String

  embeds_many :users, as: :positive_voters
  embeds_many :users, as: :negative_voters
end

还是它错了?

我也不确定,对于这种情况,它可能是一个糟糕的文档结构?如果用户已经投票并且不允许用户投票两次,我该如何优雅地获得?也许我应该使用另一种文档结构?

4

1 回答 1

5

您可以使用 has_many 而不是 embeds_many,因为您只想将选民的参考保存在文档中,而不是亲自保存整个用户文档

class Person
    include Mongoid::Document
    field :title, type: String
    field :text, type: String

    has_many :users, as: :positive_voters
    has_many :users, as: :negative_voters

    validate :unique_user

    def unique_user
       return self.positive_voter_ids.include?(new_user.id) || self.negative_voter_ids.include?(new_user.id)         
    end

end
于 2012-06-03T03:04:21.327 回答