ソート修飾子のドキュメントが見つかりません。唯一の洞察は単体テストです: 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]);
回答:
Mongooseでは、次のいずれかの方法でソートを実行できます。
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では)
Mongoose 3.8.x以降:
model.find({ ... }).sort({ field : criteria}).exec(function(err, model){ ... });
どこ:
criteria
することができasc
、desc
、ascending
、descending
、1
、または-1
更新:
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) { ... });
更新
これが人々を混乱させるなら、もっと良い記事があります。マングースのマニュアルでドキュメントの検索とクエリの動作を確認してください。Fluent APIを使用する場合は、コールバックを提供しないことでクエリオブジェクトを取得できますfind()
メソッドできます。それ以外の場合は、以下で概説するようにパラメーターを指定できます。
元の
与えられたmodel
オブジェクト、あたりにモデル上のドキュメント、これはそれがために働くことができる方法です2.4.1
。
Post.find({search-spec}, [return field array], {options}, callback)
にsearch spec
はオブジェクトが必要ですが、null
または空のオブジェクトを渡すことができます。
2番目のパラメーターは、文字列の配列としてのフィールドリストなので、['field','field2']
またはを指定しnull
ます。
3番目のパラメーターはオブジェクトとしてのオプションであり、結果セットをソートする機能が含まれます。あなたは(あなたのケースでは)文字列フィールド名を使用し{ sort: { field: direction } }
、昇順である数字であり、field
test
direction
1
-1
descedingされます。
最後のparam(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);
};
HTH
これは私がmongoose.js 2.0.4で動作するようにソートした方法です
var query = EmailModel.find({domain:"gmail.com"});
query.sort('priority', 1);
query.exec(function(error, docs){
//...
});
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
})
クエリの詳細については、ドキュメントをご覧ください。
現在のバージョンのmongoose(1.6.0)では、1列だけでソートする場合は、配列をドロップして、オブジェクトを直接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 } ]
これが私がどうにかソートしてデータを投入する方法です:
Model.find()
.sort('date', -1)
.populate('authors')
.exec(function(err, docs) {
// code here
})
これは私がやったことです、それはうまくいきます。
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) { ... });