在mongoose子文档中设置跳过和限制

时间:2018-01-03 11:22:31

标签: node.js mongodb mongoose

var comment = new Schema({
text: {type:String}
});

var Post = new Schema({
comments : [comment]
});

我有一个帖子对象的'n'个记录,我想根据限制和跳过来检索评论数据。

我想在填充帖子模型中的评论数据的同时为评论模式添加分页。

实施它的方法是什么?

1 个答案:

答案 0 :(得分:1)

您可以使用$slice

db.posts.find( {}, { comments: { $slice: [ 20, 10 ] } } )