gpt4 book ai didi

node.js - 如何在 Mongoose 查询中设置限制、偏移、跳过

转载 作者:太空宇宙 更新时间:2023-11-03 22:40:32 25 4
gpt4 key购买 nike

我正在使用express,mongoose,node.so我已经检查了有关跳过和限制文档的查询。

   Model.find({},null,{limit:2,skip:20},function(err,data){
//console.log(data)
})

最佳答案

不确定,但我认为这对您很有帮助。

var perPage = 10
, page = Math.max(0, req.param('page'))

Event.find()
.select('name')
.skip(perPage * page)
.limit(perPage)
.sort({
name: 'asc'
})
.exec(function(err, events) {
Event.count().exec(function(err, count) {
res.render('events', {
events: events,
page: page,
pages: count / perPage
})
})
})

或查看

How to paginate with Mongoose in Node.js?

关于node.js - 如何在 Mongoose 查询中设置限制、偏移、跳过,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39719021/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com