I am writing a webapp with Node.js and mongoose. How can I paginate the results I get from a .find() call? I would like a functionality comparable to "LIMIT 50,100" in SQL.
|
You can chain just like that:
|
|||||||||
|
|
After taking a closer look at the Mongoose API with the information provided by Rodolphe, I figured out this solution:
|
|||
|
|
|
You can use a little package called Mongoose Paginate that makes it easier.
After in your routes or controller, just add :
|
|||
|
|
|
Pagination using mongoose, express and jade - http://madhums.me/2012/08/20/pagination-using-mongoose-express-and-jade/
var perPage = 10
, page = req.param('page') > 0 ? req.param('page') : 0
Event
.find()
.select('name')
.limit(perPage)
.skip(perPage * page)
.sort({name: 'asc'})
.exec(function (err, events) {
Event.count().exec(function (err, count) {
res.render('events', {
events: events
, page: page
, pages: count / perPage
})
})
})
|
|||
|
|
Here is a version that I attach to all my models. It depends on underscore for convenience and async for performance. The opts allows for field selection and sorting using the mongoose syntax.
Attach it to your model schema.
|
|||
|
|
|
An improoved version of https://github.com/edwardhotchkiss/mongoose-paginate is available at https://github.com/harish2704/mongoose-paginate It worked for me |
|||
|
|