ソート修飾子のドキュメントが見つかりません。唯一の洞察は単体テストにあります: spec.lib.query.js#L12
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では、次のいずれかの方法で並べ替えを実行できます。
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) { ... });
Mongoose 3.8.x以降:
model.find({ ... }).sort({ field : criteria}).exec(function(err, model){ ... });
場所:
criteria
には、asc
、desc
、ascending
、descending
、1
、または-1
を指定できます
試してください:
Post.find().sort([['updatedAt', 'descending']]).all(function (posts) {
// do something with the array of posts
});
更新
これが人々を混乱させる場合は、より良い記事があります。 Mongooseマニュアルの ドキュメントの検索 および クエリの動作 を確認してください。 Fluent APIを使用する場合は、find()
メソッドにコールバックを提供しないことでクエリオブジェクトを取得できます。それ以外の場合は、以下で概説するようにパラメーターを指定できます。
オリジナル
Modelのドキュメント に従って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
が降順の数値です。
最後のパラメータ(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 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
})
クエリの詳細については、 docs をご覧ください。
Mongoose 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) { ... });
現在のバージョンのmongoose(1.6.0)では、one列のみでソートする場合、配列を削除してオブジェクトをsort()関数に直接渡す必要があります。
Content.find().sort('created', 'descending').execFind( ... );
これを正しくするのに少し時間がかかりました:(
これが私がどのように並べ替えて移入したかです:
Model.find()
.sort('date', -1)
.populate('authors')
.exec(function(err, docs) {
// code here
})
Post.find().sort({updatedAt: 1});
他の人は私のために働いたが、これはやった:
Tag.find().sort('name', 1).run(onComplete);
Post.find().sort({updatedAt:1}).exec(function (err, posts){
...
});
これは私がやったことです、それはうまく動作します。
User.find({name:'Thava'}, null, {sort: { name : 1 }})
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 } ]