3

所以我创建了这样的关系:

Class Business
    include MongoMapper::Document

    key  :published_review_ids , Array         , typecast: 'BSON::ObjectId'
    many :published_reviews    , class: Review , in: :published_review_ids
end

我使用 published_review_ids 来维护我的评论的排序顺序,这会在数组中上下移动它们。

因此,访问 Business.first.published_review_ids 会以正确的顺序为我提供所有 ID。访问 Business.first.published_reviews 将返回一系列评论,但按默认顺序(生成时间)排序。

有没有办法让我告诉这个关联总是根据它所基于的数组的顺序进行排序?

附带说明一下,array.first 和 array.last 在返回的 Business.first.published_reviews 数组上似乎无法正常运行。这是一个要点,显示了一些行为示例:https ://gist.github.com/09c9a0a23dc67f30a76d

4

1 回答 1

2

不,由于 MongoDB 的工作方式,该列表未排序。命中 Mongo 的查询看起来像......

{
  "_id": { "$in" => [ObjectId('...'), ObjectId('...'), ObjectId('...')] }
}

...Mongo 的唯一保证是它将返回与查询匹配的所有文档。

如果您想为您的关联设置默认顺序,您应该能够将其添加到声明中。

many :published_reviews, class: Review , in: :published_review_ids, order: :published_at.desc

您也可以这样做来更准确地解决您的问题:

def sorted_published_reviews
  published_review_ids.map do |id|
    # to_a will only fire a Mongo query the first time through this loop
    published_reviews.to_a.find { |review| review.id == id }
  end
end

在你身边:

调用firstlast直接在关联上触发查询。如果没有排序顺序,您将不会得到任何不同的东西。(见勇敢的来源

以下将加载整个关联并将第一个/最后一个拉出内部 Ruby 数组:

my_business.published_reviews[0]
my_business.published_reviews[-1]
my_business.published_reviews.to_a.first
my_business.published_reviews.to_a.last
于 2012-05-03T22:12:05.297 回答