如何在mongoose中sorting?

我找不到sorting修饰符的文档。 唯一的见解是在unit testing中: https : //github.com/LearnBoost/mongoose/blob/master/tests/unit/spec.lib.query.js

 writer.limit(5).sort(['test',1])。group('name')

但是这对我不起作用:

 
 Post.find()。sort(['updatedAt',1]);

这就是我如何在mongoose工作2.3.0 🙂

// Find First 10 News Items News.find({ deal_id:deal._id // Search Filters }, ['type','date_added'], // Columns to Return { skip:0, // Starting Row limit:10, // Ending Row sort:{ date_added: -1 //Sort by Date Added DESC } }, function(err,allNews){ socket.emit('news-load', allNews); // Do something with the array of 10 objects }) 

在Mongoose中,可以通过以下任何方式进行sorting:

 Post.find({}).sort('test').exec(function(err, docs) { ... }); Post.find({}).sort({test: 1}).exec(function(err, docs) { ... }); Post.find({}, null, {sort: {date: 1}}, function(err, docs) { ... }); Post.find({}, null, {sort: [['date', -1]]}, function(err, docs) { ... }); 

尝试:

 Post.find().sort([['updatedAt', 'descending']]).all(function (posts) { // do something with the array of posts }); 

截至Mongoose 3.8.x:

 model.find({ ... }).sort({ field : criteria}).exec(function(err, model){ ... }); 

哪里:

criteria可以是ascdescascendingdescending1-1

更新

如果这让人感到困惑,还有更好的写法。 检查查找文件以及如何在mongoose手册查询工作 。 如果你想使用stream利的api,你可以通过不向find()方法提供callback来获得查询对象,否则你可以按照下面的概述指定参数。

原版的

给定一个model对象,根据Model的文档 ,这是2.4.1工作原理:

 Post.find({search-spec}, [return field array], {options}, callback) 

search spec期望一个对象,但是您可以传递null或一个空对象。

第二个参数是字段列表作为一个string数组,所以你会提供['field','field2']null

第三个参数是作为对象的选项,其中包括对结果集进行sorting的function。 你会使用{ sort: { field: direction } }其中field是stringfieldname test (在你的情况下), direction是一个数字,其中1是升序, -1是下降。

最后的param( callback函数)是接收查询返回的文档集合的callback函数。

Model.find()实现(在这个版本)做滑动分配的属性来处理可选参数(这是我困惑!):

 Model.find = function find (conditions, fields, options, callback) { if ('function' == typeof conditions) { callback = conditions; conditions = {}; fields = null; options = null; } else if ('function' == typeof fields) { callback = fields; fields = null; options = null; } else if ('function' == typeof options) { callback = options; options = null; } var query = new Query(conditions, options).select(fields).bind(this, 'find'); if ('undefined' === typeof callback) return query; this._applyNamedScope(query); return query.find(callback); }; 

HTH

这是我如何在mongoose.js 2.0.4中工作

 var query = EmailModel.find({domain:"gmail.com"}); query.sort('priority', 1); query.exec(function(error, docs){ //... }); 

与当前版本的mongoose(1.6.0),如果你只想按列sorting,你必须删除数组,并将对象直接传递给sort()函数:

 Content.find().sort('created', 'descending').execFind( ... ); 

花了我一些时间,得到这个权利:(

这是我设法sorting和填充:

 Model.find() .sort('date', -1) .populate('authors') .exec(function(err, docs) { // code here }) 

链接Mongoose 4中的查询生成器接口。

 // Build up a query using chaining syntax. Since no callback is passed this will create an instance of Query. var query = Person. find({ occupation: /host/ }). where('name.last').equals('Ghost'). // find each Person with a last name matching 'Ghost' where('age').gt(17).lt(66). where('likes').in(['vaporizing', 'talking']). limit(10). sort('-occupation'). // sort by occupation in decreasing order select('name occupation'); // selecting the `name` and `occupation` fields // Excute the query at a later time. query.exec(function (err, person) { if (err) return handleError(err); console.log('%s %s is a %s.', person.name.first, person.name.last, person.occupation) // Space Ghost is a talk show host }) 

有关查询的更多信息,请参阅文档 。

其他人为我工作,但这样做:

  Tag.find().sort('name', 1).run(onComplete); 
 Post.find().sort({updatedAt: 1}); 
 Post.find().sort({updatedAt:1}).exec(function (err, posts){ ... });