1

我有一个具有以下架构的集合:

{ 
    _id: 521cc63c19752c562300001a,
    author: 'John',
    quote: 'A quote',
    type: 1,
    stars:
     [{ _id: 521cc63c19752c562300001b,
       user: 521cc63c19752c5623000003,
       date: Tue Aug 27 2013 16:31:08 GMT+0100 (IST) }]
}

我正在尝试选择在特定数组中具有类型的文档。例如,如果类型是唯一的,它会返回每种类型的三个引号,完全符合预期:

db.quotes.aggregate([
    {$match: {
        "type": {
            $in: [1, 2, 3] //The unique types
        }
    }},

    // Group by the type
    {$group: {
        _id: "$type",
        id: { $first: "$_id" },
        author: { $first: "$author" },
        stars: { $first: "$stars" },
        description: { $first: "$description" }
    }},

    // Map/project the first result of each group
    // to their respective keys
    {$project: {
        _id: "$id",
        type: "$_id",
        author: "$author",
        description: "$description"
        stars: "$stars"
    }}
]);

我的问题是类型可能并不总是唯一的。我可能必须找到三个具有相同类型的文档([1, 1, 1])或两个相同且一个唯一的文档([1, 2, 2])。当出现这种情况时,由于 $group by type 管道命令,它只会返回一两个结果。有什么建议我可以提供三种非唯一类型并始终获得每种类型的三个引号?

4

1 回答 1

0

您将需要编写自己的函数:

  • 将您的类型数组作为参数。
  • 实例化一个空的skipDocs哈希/对象,例如

    var objSkipDocs = {};

  • 对于您的类型数组的每个元素,将散列中该值的键归零。

    for (var i = 0; i < arrayTypes.length; i++) { objSkipDocs[arrayTypes[i]] = 0; }

  • 对于您的类型数组的每个元素,尝试获取一个文档,例如

    db.quotes.findOne({'type': arrayTypes[i] }).skip(objSkipDocs[arrayTypes[i]]);

    objSkipDocs[ 数组类型[i] ] += 1;

  • 对检索到的文档执行某些操作

于 2013-11-03T11:02:09.523 回答