답변:
최신 몽구스 (작성 당시 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
});
models.Post.find({published: true}, {sort: {'date': -1}, limit: 20}, function(err, posts) {
// `posts` with sorted length of 20
});
매개 변수 찾기
함수 찾기 매개 변수는 다음과 같습니다.
«Object»
.«Object|String»
반환 할 [projection] 선택적 필드, Query.prototype.select () 참조«Object»
선택 사항은 Query.prototype.setOptions () 참조«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) {});
... 추가적으로 다음을 사용하십시오.
mongoose.Promise = Promise;
이것은 몽구스 약속을 네이티브 ES6 약속으로 설정합니다. 이 추가 없이는 다음을 얻었습니다.
DeprecationWarning : Mongoose : mpromise (mongoose의 기본 promise 라이브러리)는 더 이상 사용되지 않습니다. 대신 자신의 promise 라이브러리를 연결하십시오. http://mongoosejs.com/docs/promises.html