「Node.js」find()ででMongoDBのコレクションのデータを検索する方法

2020年11月23日

構文
dbo.collection(コレクション名). find({}).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("usertbl"). find({}).toArray(function(err, result) {
        if (err) throw err;
        console.log(result);
        db.close();
    });
});

 

Node.js

Posted by arkgame