如何在Node.js中对Mongoose进行分页?


Answers:


278

我对这个问题接受的答案感到非常失望。这不会扩展。如果您在cursor.skip()上阅读了精美的印刷品,则:

cursor.skip()方法通常很昂贵,因为它要求服务器在开始返回结果之前从集合或索引的开头开始以获取偏移量或跳过位置。随着偏移量(例如,上面的pageNumber)的增加,cursor.skip()将变得更慢,并且占用大量CPU。对于较大的集合,cursor.skip()可能会成为IO绑定。

为了以可缩放的方式实现分页,将limit()与至少一个过滤条件组合在一起,createdOn日期适合许多目的。

MyModel.find( { createdOn: { $lte: request.createdOnBefore } } )
.limit( 10 )
.sort( '-createdOn' )

105
但是,如何从该查询中获得第二页而不进行跳过呢?如果您每页查看10个结果,而有100个结果,那么如何定义偏移量或跳过值?您没有在回答分页问题,​​因此不会感到“失望”,尽管这是一个有效的警告。尽管MySQL偏移量中存在相同的问题,但限制。返回结果之前,必须遍历树到偏移量。如果您的结果集小于100万,并且没有可保留的性能影响,我会稍作选择,请使用skip()。
Lex 2014年

13
我是一个菜鸟,当涉及到猫鼬/ MongoDB的,但回答Lex的问题,这似乎是,作为结果被“订购-createdOn”,您将要替换的值request.createdOnBefore与最低值createdOn在前面的结果集返回,然后重新查询。
特里·刘易斯

9
@JoeFrambach基于createdOn的请求似乎有问题。跳过被嵌入是有原因的。这些文档仅警告循环通过btree索引会降低性能,所有DBMS都是这种情况。对于用户来说,“ MySQL可以达到LIMIT 50,100的可比性” .skip完全正确。
Lex 2014年

8
有趣的是,此答​​案的一个问题(如@Lex评论指出)是,您只能在结果中跳过“前进”或“后退”-您不能跳转到“页面”(例如,第1页,第2页) ,第3页),而无需进行多个顺序查询来确定从何处开始分页,我怀疑在大多数情况下,这比仅使用跳过要慢。当然,您可能不需要添加跳过特定页面的功能。
伊恩·柯林斯

20
该答案包含一些有趣的观点,但不能回答最初提出的问题。
蒸汽动力

227

在通过Rodolphe提供的信息仔细研究了Mongoose API之后,我想出了以下解决方案:

MyModel.find(query, fields, { skip: 10, limit: 5 }, function(err, results) { ... });

21
那“计数”呢?您需要知道多少页。
Aleksey Saatchi 2014年

36
不缩放。
克里斯·欣克尔

4
克里斯·欣克尔(Chris Hinkle)解释了为什么不这样缩放:stackoverflow.com/a/23640287/165330
imme 2014年

7
@ChrisHinkle所有DBMS似乎都是这种情况。链接答案下面的Lex评论似乎可以解释更多。
csotiriou 2014年

2
@Avij是的。我已经使用了标识符。您在其中所做的是将最后一个记录ID发送回服务器,并获取ID大于发送的一些记录。为ID被索引的话,它会快很多
乔治·贝利

108

使用猫鼬,快递和玉石进行分页- 这是我的博客链接,详细信息

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

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
            })
        })
    })

26
感谢您发布答案!请务必仔细阅读有关自我促销常见问题解答。另请注意,每次链接到您自己的站点/产品,您都必须发布免责声明。
安德鲁·巴伯

Math.max(0, undefined)将返回undefined,这对我let limit = Math.abs(req.query.limit) || 10; let page = (Math.abs(req.query.page) || 1) - 1; Schema.find().limit(limit).skip(limit * page)
有用

55

您可以像这样链接:

var query = Model.find().sort('mykey', 1).skip(2).limit(5)

使用执行查询 exec

query.exec(callback);

感谢您的回答,如何将带有结果的回调添加到其中?
托马斯

2
execFind(function(...例如: var page = req.param('p'); var per_page = 10; if (page == null) { page = 0; } Location.count({}, function(err, count) { Location.find({}).skip(page*per_page).limit(per_page).execFind(function(err, locations) { res.render('index', { locations: locations }); }); });
todd

9
注意:这在mongoose中不起作用,但是在mongodb-native-driver中起作用。
杰西

39

在这种情况下,您可以将查询page和/或添加为limitURL作为查询字符串。

例如:
?page=0&limit=25 // this would be added onto your URL: http:localhost:5000?page=0&limit=25

由于它将是a,因此String我们需要将其转换为a Number进行计算。让我们使用parseInt方法进行操作,并提供一些默认值。

const pageOptions = {
    page: parseInt(req.query.page, 10) || 0,
    limit: parseInt(req.query.limit, 10) || 10
}

sexyModel.find()
    .skip(pageOptions.page * pageOptions.limit)
    .limit(pageOptions.limit)
    .exec(function (err, doc) {
        if(err) { res.status(500).json(err); return; };
        res.status(200).json(doc);
    });

BTW 分页始于0


5
请添加`{页面:parseInt(req.query.page)|| 0,...}到参数。
imalik8088

@ imalik8088谢谢,但是AFAIK字符串参数由来自动处理mongoose
CENT1PEDE

1
原本

@ imalik8088这很奇怪。也许您可以显示复制错误,则可以编辑答案。谢谢。
CENT1PEDE

2
这会导致猫鼬在应用条件之前找到每条记录吗?
FluffyBeing '18

37

您可以使用一个名为Mongoose Paginate的小程序包,该程序包更加轻松。

$ npm install mongoose-paginate

在路由或控制器中之后,只需添加:

/**
 * querying for `all` {} items in `MyModel`
 * paginating by second page, 10 items per page (10 results, page 2)
 **/

MyModel.paginate({}, 2, 10, function(error, pageCount, paginatedResults) {
  if (error) {
    console.error(error);
  } else {
    console.log('Pages:', pageCount);
    console.log(paginatedResults);
  }
}

2
优化了吗?
Argento

16

这是一个示例示例,您可以尝试一下,

var _pageNumber = 2,
  _pageSize = 50;

Student.count({},function(err,count){
  Student.find({}, null, {
    sort: {
      Name: 1
    }
  }).skip(_pageNumber > 0 ? ((_pageNumber - 1) * _pageSize) : 0).limit(_pageSize).exec(function(err, docs) {
    if (err)
      res.json(err);
    else
      res.json({
        "TotalCount": count,
        "_Array": docs
      });
  });
 });

11

尝试使用猫鼬功能进行分页。限制是每页的记录数和页数。

var limit = parseInt(body.limit);
var skip = (parseInt(body.page)-1) * parseInt(limit);

 db.Rankings.find({})
            .sort('-id')
            .limit(limit)
            .skip(skip)
            .exec(function(err,wins){
 });

10

这就是我在代码上所做的

var paginate = 20;
var page = pageNumber;
MySchema.find({}).sort('mykey', 1).skip((pageNumber-1)*paginate).limit(paginate)
    .exec(function(err, result) {
        // Write some stuff here
    });

这就是我做到的方式。


1
如何获取总页数
Rhushikesh '16

@Rhushikesh,您好:您可以使用count()函数获取计数。但这似乎是数据库中的另一个查询。此处的详细信息mongoosejs.com/docs/api.html#model_Model.count
Indra Santosa'2

@Rhushikesh得到计数并将其除以极限
edthethird

count()不推荐使用。使用countDocuments()
Ruslan

7

查询;
搜索= productName,

参数;
页= 1

// Pagination
router.get("/search/:page", (req, res, next) => {
  const resultsPerPage = 5;
  const page = req.params.page >= 1 ? req.params.page : 1;
  const query = req.query.search;

  Product.find({ name: query })
    .select("name")
    .sort({ name: "asc" })
    .limit(resultsPerPage)
    .skip(resultsPerPage * page)
    .then((results) => {
      return res.status(200).send(results);
    })
    .catch((err) => {
      return res.status(500).send(err);
    });
});

感谢您的回答;在读完线程后,我首先尝试了它,因为它是最新的线程之一。但是,当我实现它时,我发现了一个错误-如现在所写,它永远不会返回结果的第一页,因为它将始终具有跳过值。尝试在Product.find()调用之前添加“ page = page-1”。
Interog

6

这是我附加到所有模型的版本。为了方便起见,它取决于下划线,对于性能,它取决于异步。opts允许使用猫鼬语法进行字段选择和排序。

var _ = require('underscore');
var async = require('async');

function findPaginated(filter, opts, cb) {
  var defaults = {skip : 0, limit : 10};
  opts = _.extend({}, defaults, opts);

  filter = _.extend({}, filter);

  var cntQry = this.find(filter);
  var qry = this.find(filter);

  if (opts.sort) {
    qry = qry.sort(opts.sort);
  }
  if (opts.fields) {
    qry = qry.select(opts.fields);
  }

  qry = qry.limit(opts.limit).skip(opts.skip);

  async.parallel(
    [
      function (cb) {
        cntQry.count(cb);
      },
      function (cb) {
        qry.exec(cb);
      }
    ],
    function (err, results) {
      if (err) return cb(err);
      var count = 0, ret = [];

      _.each(results, function (r) {
        if (typeof(r) == 'number') {
          count = r;
        } else if (typeof(r) != 'number') {
          ret = r;
        }
      });

      cb(null, {totalCount : count, results : ret});
    }
  );

  return qry;
}

将其附加到您的模型架构。

MySchema.statics.findPaginated = findPaginated;

5

上面的答案很好。

对于那些异步等待而不是承诺的人来说,这只是一个附加组件!

const findAllFoo = async (req, resp, next) => {
    const pageSize = 10;
    const currentPage = 1;

    try {
        const foos = await FooModel.find() // find all documents
            .skip(pageSize * (currentPage - 1)) // we will not retrieve all records, but will skip first 'n' records
            .limit(pageSize); // will limit/restrict the number of records to display

        const numberOfFoos = await FooModel.countDocuments(); // count the number of records for that model

        resp.setHeader('max-records', numberOfFoos);
        resp.status(200).json(foos);

    } catch (err) {
        resp.status(500).json({
            message: err
        });
    }
};

5

简单而强大的分页解决方案

async getNextDocs(no_of_docs_required: number, last_doc_id?: string) {
    let docs

    if (!last_doc_id) {
        // get first 5 docs
        docs = await MySchema.find().sort({ _id: -1 }).limit(no_of_docs_required)
    }
    else {
        // get next 5 docs according to that last document id
        docs = await MySchema.find({_id: {$lt: last_doc_id}})
                                    .sort({ _id: -1 }).limit(no_of_docs_required)
    }
    return docs
}

last_doc_id:您获得的最后一个文档ID

no_of_docs_required:您要提取的文档数,即5、10、50等。

  1. 如果您不向last_doc_id方法提供,则将获得5个最新文档
  2. 如果提供了,last_doc_id那么您将获得下一个,即5个文档。

4

您也可以使用以下代码行

per_page = parseInt(req.query.per_page) || 10
page_no = parseInt(req.query.page_no) || 1
var pagination = {
  limit: per_page ,
  skip:per_page * (page_no - 1)
}
users = await User.find({<CONDITION>}).limit(pagination.limit).skip(pagination.skip).exec()

该代码将在最新版本的mongo中工作


3

一种可靠的实现方法是使用查询字符串从前端传递值。假设我们要获取 2 页,并且还将输出限制25个结果
查询字符串如下所示:?page=2&limit=25 // this would be added onto your URL: http:localhost:5000?page=2&limit=25

让我们看一下代码:

// We would receive the values with req.query.<<valueName>>  => e.g. req.query.page
// Since it would be a String we need to convert it to a Number in order to do our
// necessary calculations. Let's do it using the parseInt() method and let's also provide some default values:

  const page = parseInt(req.query.page, 10) || 1; // getting the 'page' value
  const limit = parseInt(req.query.limit, 10) || 25; // getting the 'limit' value
  const startIndex = (page - 1) * limit; // this is how we would calculate the start index aka the SKIP value
  const endIndex = page * limit; // this is how we would calculate the end index

// We also need the 'total' and we can get it easily using the Mongoose built-in **countDocuments** method
  const total = await <<modelName>>.countDocuments();

// skip() will return a certain number of results after a certain number of documents.
// limit() is used to specify the maximum number of results to be returned.

// Let's assume that both are set (if that's not the case, the default value will be used for)

  query = query.skip(startIndex).limit(limit);

  // Executing the query
  const results = await query;

  // Pagination result 
 // Let's now prepare an object for the frontend
  const pagination = {};

// If the endIndex is smaller than the total number of documents, we have a next page
  if (endIndex < total) {
    pagination.next = {
      page: page + 1,
      limit
    };
  }

// If the startIndex is greater than 0, we have a previous page
  if (startIndex > 0) {
    pagination.prev = {
      page: page - 1,
      limit
    };
  }

 // Implementing some final touches and making a successful response (Express.js)

const advancedResults = {
    success: true,
    count: results.length,
    pagination,
    data: results
 }
// That's it. All we have to do now is send the `results` to the frontend.
 res.status(200).json(advancedResults);

我建议将这种逻辑实现到中间件中,以便您可以将其用于各种路由/控制器。


2

最简单,最快捷的方法是,使用objectId示例进行分页;

初始负载条件

condition = {limit:12, type:""};

从响应数据中获取第一个和最后一个ObjectId

页面下一个条件

condition = {limit:12, type:"next", firstId:"57762a4c875adce3c38c662d", lastId:"57762a4c875adce3c38c6615"};

页面下一个条件

condition = {limit:12, type:"next", firstId:"57762a4c875adce3c38c6645", lastId:"57762a4c875adce3c38c6675"};

在猫鼬

var condition = {};
    var sort = { _id: 1 };
    if (req.body.type == "next") {
        condition._id = { $gt: req.body.lastId };
    } else if (req.body.type == "prev") {
        sort = { _id: -1 };
        condition._id = { $lt: req.body.firstId };
    }

var query = Model.find(condition, {}, { sort: sort }).limit(req.body.limit);

query.exec(function(err, properties) {
        return res.json({ "result": result);
});

2

最佳方法(IMO)是在有限的馆藏或文档中使用跳过和限制BUT。

为了在有限的文档中进行查询,我们可以在DATE类型字段上使用特定的索引,例如index。看到下面

let page = ctx.request.body.page || 1
let size = ctx.request.body.size || 10
let DATE_FROM = ctx.request.body.date_from
let DATE_TO = ctx.request.body.date_to

var start = (parseInt(page) - 1) * parseInt(size)

let result = await Model.find({ created_at: { $lte: DATE_FROM, $gte: DATE_TO } })
    .sort({ _id: -1 })
    .select('<fields>')
    .skip( start )
    .limit( size )        
    .exec(callback)

2

最简单的分页插件。

https://www.npmjs.com/package/mongoose-paginate-v2

将插件添加到架构,然后使用模型分页方法:

var mongoose         = require('mongoose');
var mongoosePaginate = require('mongoose-paginate-v2');

var mySchema = new mongoose.Schema({ 
    /* your schema definition */ 
});

mySchema.plugin(mongoosePaginate);

var myModel = mongoose.model('SampleModel',  mySchema); 

myModel.paginate().then({}) // Usage

这个插件是中断与猫鼬v5.5.5
艾萨克乐

1

这是获取带有分页和限制选项的技能模型结果的示例函数

 export function get_skills(req, res){
     console.log('get_skills');
     var page = req.body.page; // 1 or 2
     var size = req.body.size; // 5 or 10 per page
     var query = {};
     if(page < 0 || page === 0)
     {
        result = {'status': 401,'message':'invalid page number,should start with 1'};
        return res.json(result);
     }
     query.skip = size * (page - 1)
     query.limit = size
     Skills.count({},function(err1,tot_count){ //to get the total count of skills
      if(err1)
      {
         res.json({
            status: 401,
            message:'something went wrong!',
            err: err,
         })
      }
      else 
      {
         Skills.find({},{},query).sort({'name':1}).exec(function(err,skill_doc){
             if(!err)
             {
                 res.json({
                     status: 200,
                     message:'Skills list',
                     data: data,
                     tot_count: tot_count,
                 })
             }
             else
             {
                 res.json({
                      status: 401,
                      message: 'something went wrong',
                      err: err
                 })
             }
        }) //Skills.find end
    }
 });//Skills.count end

}


0

您可以像这样编写查询。

mySchema.find().skip((page-1)*per_page).limit(per_page).exec(function(err, articles) {
        if (err) {
            return res.status(400).send({
                message: err
            });
        } else {
            res.json(articles);
        }
    });

page:来自客户端的页码,作为请求参数。
per_page:每页显示的结果数

如果您正在使用MEAN堆栈,则以下博客文章提供了许多信息,这些信息可用于在前端使用angular-UI引导程序在后端创建分页,并在后端使用猫鼬跳过和限制方法。

参见:https : //techpituwa.wordpress.com/2015/06/06/mean-js-pagination-with-angular-ui-bootstrap/



0

如果您使用猫鼬作为静态 API的来源,请查看“ restify-mongoose ”及其查询。它完全内置了此功能。

集合上的任何查询都提供在此处有用的标题

test-01:~$ curl -s -D - localhost:3330/data?sort=-created -o /dev/null
HTTP/1.1 200 OK
link: </data?sort=-created&p=0>; rel="first", </data?sort=-created&p=1>; rel="next", </data?sort=-created&p=134715>; rel="last"
.....
Response-Time: 37

因此,基本上,您可以获得一台具有相对线性加载时间的通用服务器,用于查询集合。如果您想进行自己的实现,那真是太棒了。


0
app.get("/:page",(req,res)=>{
        post.find({}).then((data)=>{
            let per_page = 5;
            let num_page = Number(req.params.page);
            let max_pages = Math.ceil(data.length/per_page);
            if(num_page == 0 || num_page > max_pages){
                res.render('404');
            }else{
                let starting = per_page*(num_page-1)
                let ending = per_page+starting
                res.render('posts', {posts:data.slice(starting,ending), pages: max_pages, current_page: num_page});
            }
        });
});

0
**//localhost:3000/asanas/?pageNo=1&size=3**

//requiring asanas model
const asanas = require("../models/asanas");


const fetchAllAsanasDao = () => {
    return new Promise((resolve, reject) => {

    var pageNo = parseInt(req.query.pageNo);
    var size = parseInt(req.query.size);
    var query = {};
        if (pageNo < 0 || pageNo === 0) {
            response = {
                "error": true,
                "message": "invalid page number, should start with 1"
            };
            return res.json(response);
        }
        query.skip = size * (pageNo - 1);
        query.limit = size;

  asanas
            .find(pageNo , size , query)
        .then((asanasResult) => {
                resolve(asanasResult);
            })
            .catch((error) => {
                reject(error);
            });

    });
}

0

使用这个简单的插件。

https://github.com/WebGangster/mongoose-paginate-v2

安装

npm install mongoose-paginate-v2
用法将插件添加到架构,然后使用模型分页方法:

const mongoose         = require('mongoose');
const mongoosePaginate = require('mongoose-paginate-v2');

const mySchema = new mongoose.Schema({ 
  /* your schema definition */ 
});

mySchema.plugin(mongoosePaginate);

const myModel = mongoose.model('SampleModel',  mySchema); 

myModel.paginate().then({}) // Usage


已经在另一个答案中“建议”了该插件。知道您是否是此软件包的撰稿人也将很有帮助。
lukas_o

@lukas_o是的。我是插件的创建者。
Aravind NC

0

根据

克里斯·欣克尔

回答:

//assume every page has 50 result
const results = (req.query.page * 1) * 50;
MyModel.find( { fieldNumber: { $lte: results} })
.limit( 50 )
.sort( '+fieldNumber' )

//one thing left is create a fieldNumber on the schema thas holds ducument number

0

使用ts-猫鼬分页

    const trainers = await Trainer.paginate(
        { user: req.userId },
        {
            perPage: 3,
            page: 1,
            select: '-password, -createdAt -updatedAt -__v',
            sort: { createdAt: -1 },
        }
    )

    return res.status(200).json(trainers)

0
let page,limit,skip,lastPage, query;
 page = req.params.page *1 || 1;  //This is the page,fetch from the server
 limit = req.params.limit * 1 || 1; //  This is the limit ,it also fetch from the server
 skip = (page - 1) * limit;   // Number of skip document
 lastPage = page * limit;   //last index 
 counts = await userModel.countDocuments() //Number of document in the collection

query = query.skip(skip).limit(limit) //current page

const paginate = {}

//For previous page
if(skip > 0) {
   paginate.prev = {
       page: page - 1,
       limit: limit
} 
//For next page
 if(lastPage < counts) {
  paginate.next = {
     page: page + 1,
     limit: limit
}
results = await query //Here is the final results of the query.

-1

能够通过async / await达到结果。

下面的代码示例使用带有hapi v17和mongoose v5的异步处理程序

{
            method: 'GET',
            path: '/api/v1/paintings',
            config: {
                description: 'Get all the paintings',
                tags: ['api', 'v1', 'all paintings']
            },
            handler: async (request, reply) => {
                /*
                 * Grab the querystring parameters
                 * page and limit to handle our pagination
                */
                var pageOptions = {
                    page: parseInt(request.query.page) - 1 || 0, 
                    limit: parseInt(request.query.limit) || 10
                }
                /*
                 * Apply our sort and limit
                */
               try {
                    return await Painting.find()
                        .sort({dateCreated: 1, dateModified: -1})
                        .skip(pageOptions.page * pageOptions.limit)
                        .limit(pageOptions.limit)
                        .exec();
               } catch(err) {
                   return err;
               }

            }
        }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.