没有字段名称的猫鼬结构聚合输出

Mongoose structure aggregation output without field names

我正在使用聚合对子文档中的数据进行分页。子文档没有严格的架构,因此它们对于每个文档可能不同,这让我很难构建我的输出,因为我不知道子文档的字段名称。

我在用什么

Mongo 3.0.0

节点 0.10.33

Mongo3.9.7

我的模特

var BodySchema = new Schema({random: String},{strict:false});

var FeedSchema = new Schema({
    name: String,
    body:[BodySchema]
});

我的数据是这样的

[{
    _id:"...",
    name:"Power Rangers feed",
    body:[
        {
            "_id":"...",
            "name" : "Jason",
            "colour" : "Red",
            "animal" : "T-rex"
        },
        {
            "_id":"...",
            "name" : "Billy",
            "colour" : "Blue",
            "animal" : "Triceratops"
        },
        {
            "_id":"...",
            "name" : "Zach",
            "colour" : "Black",
            "animal" : "Mastadon"
        }
    ]
},
{
    _id:"...",
    name:"Transformers feed",
    body:[
        {
            "_id":"...",
            "name" : "Optimus Prime",
            "team" : "Autobots",
            "class" : "leader"
            "alt-mode" : "truck"
        },
        {
            "_id":"...",
            "name" : "Bumblebee",
            "team" : "Autobots",
            "class" : "scout"
            "alt-mode" : "VW Beetle"
        },
        {
            "_id":"...",
            "name" : "Blaster",
            "team" : "Autobots",
            "class" : "Commmunicator"
            "alt-mode" : "Sterio"
        },
        {
            "_id":"...",
            "name" : "Hotrod",
            "team" : "Autobots",
            "class" : "Warrior"
            "alt-mode" : "Car"
        }
    ]
}]

我当前的聚合代码如下所示

feed.aggregate([
    {'$match':{_id:id('550234d3d06039d507d238d8')}},
    {'$unwind':'$body'},
    {'$skip':2},
    {'$limit':2},
    {
        '$project': {
            '_id':"$body._id",
            'body': "$body"
        }

    },
], function(err, result){

    if(err){return(res.send(500, err))}

    res.send(result);

});

我目前的结果是这样的

[{
    _id:"...",
    body:{
        "_id":"...",
        "name" : "Blaster",
        "team" : "Autobots",
        "class" : "Commmunicator"
        "alt-mode" : "Sterio"
    }
},
{
    _id:"...",
    body:{
        "_id":"...",
        "name" : "Hotrod",
        "team" : "Autobots",
        "class" : "Warrior"
        "alt-mode" : "Car"
    }
}]

我想要的结果是这样的

[
    {
        "_id":"...",
        "name" : "Blaster",
        "team" : "Autobots",
        "class" : "Commmunicator"
        "alt-mode" : "Sterio"
    },
    {
        "_id":"...",
        "name" : "Hotrod",
        "team" : "Autobots",
        "class" : "Warrior"
        "alt-mode" : "Car"
    }
]

我的问题

如何实现我想要的结果结构。

所以,您会讨厌这个,但这正是聚合管道中 $project and the $group 阶段的工作方式。您需要在输出 "explicitly" 中指定您想要的所有字段。因此:

feed.aggregate([
    {'$match':{_id:id('550234d3d06039d507d238d8')}},
    {'$unwind':'$body'},
    {'$skip':2},
    {'$limit':2},
    {
        '$project': {
            '_id':"$body._id",
            'name': '$body.name',
            'team': '$body.team',
            'class': '$body.alt-mode'
        }
    },
], function(err, result){

这确实是唯一的方法。

虽然这背后确实有一个强有力的推理,并且大多数原则都在 SQL SELECT 中得到支持,但 * "wildcard" 除外在适用的情况下。

一般前提是这在一般操作上类似于 unix pipe 所以如果你这样想:

grep | awk | sed

那么操作在结构上看起来更合乎逻辑。