我没有找到排序修饰符的doc。唯一的洞见在单元测试中: spec.lib.query.js # L12
writer.limit(5).sort(['test', 1]).group('name')
但这对我不起作用:
Post.find().sort(['updatedAt', 1]);
我没有找到排序修饰符的doc。唯一的洞见在单元测试中: spec.lib.query.js # L12
writer.limit(5).sort(['test', 1]).group('name')
但这对我不起作用:
Post.find().sort(['updatedAt', 1]);
当前回答
Post.find().sort({updatedAt: 1});
其他回答
解决方案:
posts.find().sort({field:1})
//升序和降序使用-1而不是1
我就是这么做的,效果很好。
User.find({name:'Thava'}, null, {sort: { name : 1 }})
Post.find().sort({updatedAt:1}).exec(function (err, posts){
...
});
Post.find().sort({updatedAt: 1});
从Mongoose 3.8.x开始:
model.find({ ... }).sort({ field : criteria}).exec(function(err, model){ ... });
地点:
条件包括asc、desc、升序、降序、1、-1
注意:使用引号或双引号
使用“asc”,“desc”,“ascending”,“descent”,1或-1