我的mongodb已经有了用户名和密码。
我想使用node.js本机驱动程序从mongodb中的集合中检索数据。
然后如何使用node.js连接到mongodb
由于
答案 0 :(得分:1)
var MongoClient = require('mongodb').MongoClient;
var url = 'mongodb://localhost:27017/test';
MongoClient.connect(url, function(err, db) {
console.log("Connected correctly to server.");
db.close();
});
//Import the mongoose module
var mongoose = require('mongoose');
//Set up default mongoose connection
var mongoDB = 'mongodb://127.0.0.1/my_database';
mongoose.connect(mongoDB, {
useMongoClient: true
});
//Get the default connection
var db = mongoose.connection;
//Bind connection to error event (to get notification of connection errors)
db.on('error', console.error.bind(console, 'MongoDB connection error:'));