0
我想用nodejs連接到mongodb。我想連接到一次MongoDB並使用需要的實例。使用nodejs的MongoClient連接
connection.js文件
var MongoClient = require('mongodb').MongoClient, Server = require('mongodb').Server;
var mongoClient = new MongoClient(new Server('localhost', 27017));
module.export = mongoClient;
我要訪問其他文件MongoClient對象執行類似操作分貝:
router.js文件
var mongoClient = require('./connection.js')
mongoClient.open(function(err, mongoClient) {
var db1 = mongoClient.db("mydb");
db1.collection('Persons', function (err, collection) {
collection.find().toArray(function(err, items) {
if(err) throw err;
console.log(items);
});
mongoClient.close();
});
我我得到以下錯誤:
TypeError: mongoClient.open is not a function