マングースで並べ替える方法は?


154

ソート修飾子のドキュメントが見つかりません。唯一の洞察は単体テストです: spec.lib.query.js#L12

writer.limit(5).sort(['test', 1]).group('name')

しかし、それは私にはうまくいきません:

Post.find().sort(['updatedAt', 1]);

7
最新の回答については、この回答をお読みください。
フランシスコプレセンシア2015

回答:


157

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

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

63

Mongoose 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 2015

私が持っているall() must be used after where() when called with these arguments...マングース4.6.5に
ダム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

更新

これが人々を混乱させるなら、もっと良い記事があります。マングースのマニュアルでドキュメントの検索クエリの動作を確認してください。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 } }、昇順である数字であり、fieldtestdirection1-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


プロジェクションの場合:スペースで区切られた列名を含む文字列を提供する必要があります。
マディ2015年

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

現在のバージョンのmongoose(1.6.0)では、1列だけでソートする場合は、配列をドロップして、オブジェクトを直接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) { ... });

0
Post.find().sort('updatedAt').exec((err, post) => {...});

1
こんにちは、コミュニティへようこそ。あなたの答えは解決策を提供するかもしれませんが、良い答えはいくつかの説明を必要とします。いくつかの参照と適切な説明を追加してください。
パンダ
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.