web-dev-qa-db-ja.com

返品されるアイテムの数を制限するにはどうすればよいですか?

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

返されたアイテムを、挿入された最新の10個のアイテムのみに制限するにはどうすればよいですか?

99
Running Turtle

最新のマングース(執筆時点では3.8.1)では、2つのことを別々に行います。(1)sort()に単一の引数を渡す必要があります。sort()は、制約の配列または1つの制約である必要があります。 )execFind()はなくなり、代わりにexec()に置き換えられました。したがって、mongoose 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
});
166
marni

このように、.limit()を使用します:

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

私は少し怠け者なので、シンプルなものが好きです:

let users = await Users.find({}, null,{limit: 50});
8
theCode
models.Post.find({published: true}, {sort: {'date': -1}, limit: 20}, function(err, posts) {
 // `posts` with sorted length of 20
});
5
Suhail Ahmed

何らかの理由で、私はこれを提案された答えで動作させることができませんでしたが、私はselectを使用して別のバリエーションを見つけました:

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

APIはおそらく変更されましたか?バージョン3.8.19を使用しています

1
TGH

...さらに使用することを確認してください:

mongoose.Promise = Promise;

これにより、マングースの約束がネイティブES6の約束に設定されます。この追加なしで私は得た:

DeprecationWarning:Mongoose:mpromise(mongooseのデフォルトのpromiseライブラリ)は非推奨です。代わりに独自のpromiseライブラリをプラグインしてください: http://mongoosejs.com/docs/promises.html

1
Schmalitz

パラメータの検索

関数検索に使用されるパラメーターは次のとおりです。

  1. 条件«Object»
  2. [projection] «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
  }
);

追加情報

Mongooseでは、次のようなさまざまな方法でコレクションを照会できます。 Official Documentation

// 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) {});
0
Rotimi Best