簡體   English   中英

無法“跳過”貓鼬子文檔

[英]unable to “skip” mongoose sub-documents

我正在使用貓鼬和節點,並且試圖從子文檔中分頁數據。 我可以限制子文檔,但不能跳過它們。

我使用的版本是:

蒙戈3.0.0

節點0.10.33

貓鼬3.9.7

數據

[{ 
    "name" : "Ranger Table", 
    "_id" : ObjectId("550234d3d06039d507d238d8"),
    "body" : [ 
        { 
            "name" : "Jason", 
            "colour" : "Red", 
            "animal" : "T-rex", 
            "_id" : ObjectId("550234d3d06039d507d238de") 
        }, 
        { 
            "name" : "Billy", 
            "colour" : "Blue", 
            "animal" : "Triceratops", 
            "_id" : ObjectId("550234d3d06039d507d238dd") 
        }, 
        { 
            "name" : "Zach", 
            "colour" : "Black", 
            "animal" : "Mastadon", 
            "_id" : ObjectId("550234d3d06039d507d238dc") 

        },
        {
            "name" : "Tommy",
            "colour" : "Green",
            "animal" : "Dragon"
            "_id" : ObjectId("550234d3d06039d507d238d9") 
        }   
    ]
},{ 
    "name" : "Bot Table", 
    "_id" : ObjectId("5502d205184cd74033f64e6b"),
    "body" : [ 
        { 
            "name" : "Optimus", 
            "team" : "Autobots", 
            "class" : "Leader", 
            "_id" : ObjectId("550234d3d06039d507d238d9") 
        }, 
        { 
            "name" : "Bumblebee", 
            "team" : "Autobots", 
            "class" : "Scout", 
            "_id" : ObjectId("550234d3d06039d507d238da") 
        }, 
        { 
            "name" : "Astrotrain", 
            "team" : "Decepticons", 
            "class" : "Transport", 
            "_id" : ObjectId("550234d3d06039d507d238db") 

        }
    ]
}]

編碼

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

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

var feed = mongoose.model('Feed', FeedSchema);

feed.find({_id:'550234d3d06039d507d238d8'})
    .populate({
        "path":"body",
        "options":{
            limit:2, //This works fine
            skip:2  //This doesn't work
        }
    })
    .exec(function(err, result){

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

        res.send(result);
    });

結果上面的代碼確實將“ body”子文檔的數量限制為2,但是不跳過任何子文檔。

上面的代碼返回以下內容:

{ 
    "name" : "Ranger Table", 
    "_id" : ObjectId("550234d3d06039d507d238d8"),
    "body" : [ 
        { 
            "name" : "Jason", 
            "colour" : "Red", 
            "animal" : "T-rex", 
            "_id" : ObjectId("550234d3d06039d507d238de") 
        }, 
        { 
            "name" : "Billy", 
            "colour" : "Blue", 
            "animal" : "Triceratops", 
            "_id" : ObjectId("550234d3d06039d507d238dd") 
        }
    ]
} 

但是它應該返回以下內容:

{ 
    "name" : "Ranger Table", 
    "_id" : ObjectId("550234d3d06039d507d238d8"),
    "body" : [ 
        { 
            "name" : "Zach", 
            "colour" : "Black", 
            "animal" : "Mastadon", 
            "_id" : ObjectId("550234d3d06039d507d238dc") 

        },
        {
            "name" : "Tommy",
            "colour" : "Green",
            "animal" : "Dragon"
            "_id" : ObjectId("550234d3d06039d507d238d9") 
        }
    ]
} 

我發現的解決方案是使用聚合並使用$ unwind指定子文檔的名稱。

http://docs.mongodb.org/manual/reference/operator/aggregation/

feed.aggregate([
    {'$match':{_id:id('550234d3d06039d507d238d8')}},
    {'$unwind':'$body'},
    {'$skip':2},
    {'$limit':2},
], function(err, result){

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

    res.send(result);

});

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM