Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の方法でモンクAPIで制限と並べ替えを使用しようとしています:
db.user.find({ changesId : '1234' }, { limit :4 , sort : { name : 1 } }, function (err,res) {
});
この場合、ソートは機能しないようです。私は何を間違っていますか?
コードが正しくありません -}がありません。正しいもの:
}
db.user.find({ changesId : '1234' }, { limit : 4, sort : { name : 1 } }, // <- here function (err,res) { });