猫鼬如何排序?


Answers:


157

在猫鼬中,可以通过以下任意一种方式进行排序:

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

5
这几乎是Francisco Presencia链接的答案的直接副本。不幸的是,票数最高的答案已经过时且不必要地冗长。
iwein

2
到目前为止,这还不太正确。{sort: [['date', 1]]}将不起作用,但 .sort([['date', -1]])将起作用。看到这个答案:stackoverflow.com/a/15081087/404699
steampowered

@steampowered谢谢,我将进行编辑,如果我弄错了,非常欢迎您告诉我或进行编辑。
iwein

135

这就是我在猫鼬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
})

7
在猫鼬3你不能使用Array字段选择了-它必须是StringObject
pkyeck

4
顺便说一句,如果您想要所有字段,则可以拉null入该部分(至少在3.8中)
MalcolmOcean 2015年

63

从猫鼬3.8.x开始:

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

哪里:

criteria可以是ascdescascendingdescending1,或-1


52

更新:

Post.find().sort({'updatedAt': -1}).all((posts) => {
  // do something with the array of posts
});

尝试:

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

13
在最新的猫鼬(2.4.10)中,它是.sort("updatedAt", -1)
Marcel Jackwerth 2012年

43
在最新的Mongoose(3.5.6-pre版本中,但我很确定它对所有3.x都有效)是.sort({updatedAt: -1}).sort('-updatedAt')
Andreas Hultgren 2013年

2
然后,您应该使用exec(function (posts) {…代替all
Buzut,

我有all() must be used after where() when called with these arguments猫鼬4.6.5 ...
Fa Fa

25

猫鼬v5.4.3

按升序排序

Post.find({}).sort('field').exec(function(err, docs) { ... });
Post.find({}).sort({ field: 'asc' }).exec(function(err, docs) { ... });
Post.find({}).sort({ field: 'ascending' }).exec(function(err, docs) { ... });
Post.find({}).sort({ field: 1 }).exec(function(err, docs) { ... });

Post.find({}, null, {sort: { field : 'asc' }}), function(err, docs) { ... });
Post.find({}, null, {sort: { field : 'ascending' }}), function(err, docs) { ... });
Post.find({}, null, {sort: { field : 1 }}), function(err, docs) { ... });

按降序排序

Post.find({}).sort('-field').exec(function(err, docs) { ... });
Post.find({}).sort({ field: 'desc' }).exec(function(err, docs) { ... });
Post.find({}).sort({ field: 'descending' }).exec(function(err, docs) { ... });
Post.find({}).sort({ field: -1 }).exec(function(err, docs) { ... });


Post.find({}, null, {sort: { field : 'desc' }}), function(err, docs) { ... });
Post.find({}, null, {sort: { field : 'descending' }}), function(err, docs) { ... });
Post.find({}, null, {sort: { field : -1 }}), function(err, docs) { ... });

有关详细信息:https : //mongoosejs.com/docs/api.html#query_Query-sort


23

更新资料

如果这使人们感到困惑,那是更好的写法;在猫鼬手册中查看查找文档以及查询的工作方式。如果要使用流利的api,则可以通过不提供find()方法的回调来获取查询对象,否则,可以按照我在下面概述的方式指定参数。

原版的

根据Model上model文档,给定一个对象,这就是它如何工作的2.4.1

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

search spec预期的目标,但你可以通过null或空对象。

第二个参数是作为字符串数组的字段列表,因此您可以提供['field','field2']null

第三个参数是作为对象的选项,其中包括对结果集进行排序的能力。您将{ sort: { field: direction } }在哪里使用field字符串字段名test(在您的情况下),并direction在其中使用数字1升序和-1降序。

最后一个参数(callback)是回调函数,该函数接收查询返回的文档集合。

Model.find()实现(在这个版本)确实性质来处理可选则params的滑动分配(这是困惑我!):

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

高温超导


对于投影:我们需要提供包含以空格分隔的列名称的字符串。
maddy

11

这就是我如何在mongoose.js 2.0.4中工作的方式

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

10

与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
})

有关更多查询,请参阅文档


4

与猫鼬(1.6.0),如果你只是想排序当前版本的一个列,你必须删除阵列,并直接传递对象的sort()函数:

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

花了我一些时间才能做到这一点:(


谢谢。你的帖子对我有帮助。我也面对这个。
user644745

4
app.get('/getting',function(req,res){
    Blog.find({}).limit(4).skip(2).sort({age:-1}).then((resu)=>{
        res.send(resu);
        console.log(resu)
        // console.log(result)
    })
})

输出量

[ { _id: 5c2eec3b8d6e5c20ed2f040e, name: 'e', age: 5, __v: 0 },
  { _id: 5c2eec0c8d6e5c20ed2f040d, name: 'd', age: 4, __v: 0 },
  { _id: 5c2eec048d6e5c20ed2f040c, name: 'c', age: 3, __v: 0 },
  { _id: 5c2eebf48d6e5c20ed2f040b, name: 'b', age: 2, __v: 0 } ]

3

这是我设法排序和填充的方式:

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



2
Post.find().sort({updatedAt:1}).exec(function (err, posts){
...
});


1

从4.x开始,排序方法已更改。如果您使用的是> 4.x。尝试使用以下任何一种方法。

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

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.