「Node.js」find().sort()関数でMongoDBのデータをソートするサンプル
構文
{ type: 1 } // type 昇順
{ type: -1 } // type 降順
サンプルコード
var MongoClient = require('mongodb').MongoClient; var url = "mongodb://localhost:27017/"; MongoClient.connect(url, { useNewUrlParser: true }, function(err, db) { if (err) throw err; var dbo = db.db("testdb"); var mysort = { type: 1 }; dbo.collection("testtbl").find().sort(mysort).toArray(function(err, result) { if (err) throw err; console.log(result); db.close(); }); });