我正在用Node.js和猫鼬编写一个Webapp。如何对.find()通话结果进行分页?我想要一个与"LIMIT 50,100"SQL 相当的功能。
.find()
"LIMIT 50,100"
在通过Rodolphe提供的信息仔细研究了Mongoose API之后,我想出了以下解决方案:
MyModel.find(query, fields, { skip: 10, limit: 5 }, function(err, results) { ... });