「Node.js」limit()関数でMongoDBのドキュメントだけ件数を取得する

2020年11月23日

構文
dbo.collection(xxx).find().limit(5).toArray(function(err, result)
サンプルコード

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");
    dbo.collection("testcollect").find().limit(5).toArray(function(err, result) {
        if (err) throw err;
        console.log(result);
        db.close();
  });
});

 

Node.js

Posted by arkgame