javascript – MongoDb $slice无效

我试图在MongoDB中使用聚合函数获取一些记录,

 但它显示以下无效运算符$slice:

db.getCollection('test').aggregate( [
    { $match: { 'subjectId': '123' } }, 
    { $sort: { 'assessmentDate': -1 } }, 
    { $group: { '_id': '$area', 'docs': { $push: "$$ROOT" } } },  
    { $project: { docs: { $slice: ["$docs", 1, 1]   }  }  }, 
])
Error("Printing Stack Trace")@:0()@src/mongo/shell/utils.js:37([objectArray])@src/mongo/shell/collection.js:866
@(shell):1
uncaught exception: aggregate failed: {
    "errmsg" : "exception: invalid operator '$slice'",
    "code" : 15999,
    "ok" : 0
}

MongoDB版本3.0.9

最佳答案 要使用$slice,我们应该使用3.2.x以上的mongoDB版本,

更改日志可以在
changelog找到.

$slice 01001的文档

点赞