[mongoose] 반품 수를 제한하려면 어떻게합니까?

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

반품 된 품목을 삽입 된 최근 10 개 품목으로 제한하려면 어떻게해야합니까?



답변

최신 몽구스 (작성 당시 3.8.1)에서는 두 가지를 다르게 수행합니다. ) 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
  });


답변

이와 같이 .limit () 사용 :

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


답변

나는 조금 게으 르기 때문에 간단한 것을 좋아합니다.

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


답변

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


답변

매개 변수 찾기

함수 찾기 매개 변수는 다음과 같습니다.

  1. 조건 «Object».
  2. «Object|String»반환 할 [projection] 선택적 필드, 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를 사용하면 다음과 같은 다양한 방법으로 컬렉션을 쿼리 할 수 ​​있습니다.
공식 문서

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


답변

어떤 이유로 나는 제안 된 답변과 함께 작동하도록 만들 수 없었지만 select를 사용하여 나를 위해 일한 다른 변형을 발견했습니다.

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

API가 변경되었을 수 있습니까? 버전 3.8.19를 사용하고 있습니다.


답변

… 추가적으로 다음을 사용하십시오.

mongoose.Promise = Promise;

이것은 몽구스 약속을 네이티브 ES6 약속으로 설정합니다. 이 추가 없이는 다음을 얻었습니다.

DeprecationWarning : Mongoose : mpromise (mongoose의 기본 promise 라이브러리)는 더 이상 사용되지 않습니다. 대신 자신의 promise 라이브러리를 연결하십시오. http://mongoosejs.com/docs/promises.html