วิธีการเรียงลำดับพังพอน?


154

ฉันไม่พบเอกสารสำหรับตัวดัดแปลงการเรียงลำดับ ข้อมูลเชิงลึกเพียงอย่างเดียวคือในการทดสอบหน่วย: spec.lib.query.js # L12

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

แต่มันไม่ได้ผลสำหรับฉัน:

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

7
อ่านคำตอบนี้เพื่อรับคำตอบล่าสุด
Francisco Presencia

คำตอบ:


157

ในพังพอนการเรียงลำดับสามารถทำได้ด้วยวิธีใดวิธีหนึ่งต่อไปนี้:

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

@ ขอบคุณอำนาจฉันจะแก้ไขคุณจะยินดีที่จะแจ้งให้เราทราบหรือแก้ไขถ้าฉันทำผิด
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สำหรับการเลือกฟิลด์ได้อีกต่อไป - มันจะต้องเป็นStringหรือObject
pkyeck

4
btw หากคุณต้องการฟิลด์ทั้งหมดคุณสามารถดึงnullในส่วนนั้น (อย่างน้อย 3.8)
MalcolmOcean

63

จาก Mongoose 3.8.x:

model.find({ ... }).sort({ field : criteria}).exec(function(err, model){ ... });

ที่ไหน:

criteriaสามารถasc, desc, ascending, descending, 1หรือ-1


52

UPDATE:

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

43
ล่าสุดในพังพอนมากยิ่งขึ้น (3.5.6 ก่อน แต่ผมค่อนข้างมั่นใจว่ามันเป็นเรื่องที่ถูกต้องสำหรับทุก 3.x) มันหรือ.sort({updatedAt: -1}) .sort('-updatedAt')
Andreas Hultgren

2
คุณควรใช้exec(function (posts) {…แทนall
บูซูต

ฉันได้รับall() must be used after where() when called with these argumentsใน Mongoose 4.6.5 ...
Dam 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

ปรับปรุง

มีการเขียนที่ดีกว่านี้ถ้าคนสับสน; ตรวจสอบการค้นหาเอกสารและวิธีการทำงานของแบบสอบถามในคู่มือพังพอน หากคุณต้องการใช้ API ได้อย่างคล่องแคล่วคุณสามารถรับวัตถุคิวรีได้โดยไม่ให้วิธีการโทรกลับfind()มิฉะนั้นคุณสามารถระบุพารามิเตอร์ได้ตามที่ฉันร่าง

เป็นต้นฉบับ

รับmodelวัตถุตามเอกสารในรูปแบบนี่คือวิธีที่มันสามารถทำงานได้2.4.1:

Post.find({search-spec}, [return field array], {options}, callback)

search specคาดว่าวัตถุ แต่คุณสามารถส่งผ่านnullหรือวัตถุที่ว่างเปล่า

พระรามที่สองคือรายการเขตข้อมูลเป็นอาร์เรย์ของสตริงดังนั้นคุณจะจัดหาหรือ['field','field2']null

พารามิเตอร์ที่สามคือตัวเลือกในฐานะวัตถุซึ่งรวมถึงความสามารถในการเรียงลำดับชุดผลลัพธ์ คุณจะใช้{ sort: { field: direction } }ที่fieldเป็นชื่อfield field test(ในกรณีของคุณ) และdirectionเป็นหมายเลขที่1ขึ้นและ-1desceding

พารามิเตอร์สุดท้าย ( 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


for projection: เราต้องจัดเตรียมสตริงที่มีชื่อคอลัมน์คั่นด้วยช่องว่าง
maddy

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) ถ้าคุณต้องการเรียงโดยหนึ่งคอลัมน์คุณต้องปล่อยอาร์เรย์และส่งวัตถุโดยตรงไปยังฟังก์ชัน 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 } ]






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.