如何限制退回物品的数量?


113
myModel.find({}, function(err, items) {
    console.log(items.length);    // Big number
});

如何将返回的项目限制为仅插入最近的10个项目?

Answers:


188

在最新的猫鼬(撰写本文时为3.8.1)中,您做了两件事不同:(1)您必须将单个参数传递给sort(),该参数必须是约束数组或仅一个约束,以及(2 )execFind()消失了,取而代之的是exec()。因此,使用猫鼬3.8.1可以做到这一点:

var q = models.Post.find({published: true}).sort({'date': -1}).limit(20);
q.exec(function(err, posts) {
     // `posts` will be of length 20
});

或者您可以像这样简单地将其链接在一起:

models.Post
  .find({published: true})
  .sort({'date': -1})
  .limit(20)
  .exec(function(err, posts) {
       // `posts` will be of length 20
  });

{'date':-1}是什么意思?提前致谢!
kurumkan '16

3
@ArslArsl-结果将按日期降序排列。
NL长

@ArslArsl类似于以下内容:{ date: 'desc' } {date: 'descending'}。看到这个答案
rotimi-best

是否有最高限额?
lukas_o

20

像这样,使用.limit():

var q = models.Post.find({published: true}).sort('date', -1).limit(20);
q.execFind(function(err, posts) {
  // `posts` will be of length 20
});

2
非常感谢,不知道您可以进行这样的查询。在哪里可以找到有关此execFind方法的某种形式的文档?
奔跑的海龟

老实说,我只看猫鼬来源和内容中的示例以及测试用例。邮件列表也不错。实际的文档似乎有点过时了。
kcbanner 2011年

1
execFind是否仍在mongoosejs的最新版本中?
曼尼

2
@Manny不是。请参阅marni的答案以获取更新版本。
JohnnyHK

15

我有点懒,所以我喜欢简单的事情:

let users = await Users.find({}, null, {limit: 50});

8
models.Post.find({published: true}, {sort: {'date': -1}, limit: 20}, function(err, posts) {
 // `posts` with sorted length of 20
});

5
尽管此代码段可以解决问题,但包括有关如何以及为何解决该问题的说明,确实可以帮助提高您的帖子质量。请记住,您将来会为读者回答问题,而不仅仅是现在问的人!请编辑您的答案以添加说明,并指出适用的限制和假设。
Toby Speight

2

查找参数

参数查找功能需要如下:

  1. 条件«Object»
  2. [投影] «Object|String»要返回的可选字段,请参见Query.prototype.select()
  3. [选项] «Object»可选,请参见Query.prototype.setOptions()
  4. [打回来] «Function»

如何限制

const Post = require('./models/Post');

Post.find(
  { published: true }, 
  null, 
  { sort: { 'date': 'asc' }, limit: 20 },
  function(error, posts) {
   if (error) return `${error} while finding from post collection`;

   return posts; // posts with sorted length of 20
  }
);

额外信息

猫鼬允许您以多种方式查询收藏,例如: 官方文档

// named john and at least 18
MyModel.find({ name: 'john', age: { $gte: 18 }});

// executes, passing results to callback
MyModel.find({ name: 'john', age: { $gte: 18 }}, function (err, docs) {});

// executes, name LIKE john and only selecting the "name" and "friends" fields
MyModel.find({ name: /john/i }, 'name friends', function (err, docs) { })

// passing options
MyModel.find({ name: /john/i }, null, { skip: 10 })

// passing options and executes
MyModel.find({ name: /john/i }, null, { skip: 10 }, function (err, docs) {});

// executing a query explicitly
var query = MyModel.find({ name: /john/i }, null, { skip: 10 })
query.exec(function (err, docs) {});

// using the promise returned from executing a query
var query = MyModel.find({ name: /john/i }, null, { skip: 10 });
var promise = query.exec();
promise.addBack(function (err, docs) {});

1

由于某种原因,我无法使它与建议的答案一起使用,但是我发现使用select的另一个变体对我很有效:

models.Post.find().sort('-date').limit(10).select('published').exec(function(e, data){
        ...
});

API是否已更改?我正在使用3.8.19版


1

...另外请确保使用:

mongoose.Promise = Promise;

这将猫鼬应许设置为原生ES6应许。没有此添加,我得到:

弃用警告:猫鼬:mpromise(猫鼬的默认诺言库)已过时,请插入您自己的诺言库:http ://mongoosejs.com/docs/promises.html

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.