我找不到排序修饰符的文档。唯一的见识在于单元测试: spec.lib.query.js#L12
writer.limit(5).sort(['test', 1]).group('name')
但这对我不起作用:
Post.find().sort(['updatedAt', 1]);
我找不到排序修饰符的文档。唯一的见识在于单元测试: spec.lib.query.js#L12
writer.limit(5).sort(['test', 1]).group('name')
但这对我不起作用:
Post.find().sort(['updatedAt', 1]);
Answers:
在猫鼬中,可以通过以下任意一种方式进行排序:
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) { ... });
{sort: [['date', 1]]}
将不起作用,但 .sort([['date', -1]])
将起作用。看到这个答案:stackoverflow.com/a/15081087/404699
这就是我在猫鼬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
})
Array
字段选择了-它必须是String
或Object
null
入该部分(至少在3.8中)
更新:
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
});
.sort("updatedAt", -1)
。
.sort({updatedAt: -1})
或.sort('-updatedAt')
。
exec(function (posts) {…
代替all
all() must be used after where() when called with these arguments
猫鼬4.6.5 ...
猫鼬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
更新资料
如果这使人们感到困惑,那是更好的写法;在猫鼬手册中查看查找文档以及查询的工作方式。如果要使用流利的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);
};
高温超导
与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
})
有关更多查询,请参阅文档。
与猫鼬(1.6.0),如果你只是想排序当前版本的一个列,你必须删除阵列,并直接传递对象的sort()函数:
Content.find().sort('created', 'descending').execFind( ... );
花了我一些时间才能做到这一点:(
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 } ]
这是我所做的,效果很好。
User.find({name:'Thava'}, null, {sort: { name : 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) { ... });
Post.find().sort('updatedAt').exec((err, post) => {...});