我一直在阅读和阅读,但仍然困惑什么是在整个 NodeJs 应用程序中共享相同数据库(MongoDb)连接的最佳方式。据我所知,连接应该打开时,应用程序启动和重用之间的模块。我目前对最佳方式的想法是 server.js
(所有内容开始的主文件)连接到数据库并创建传递给模块的对象变量。一旦连接,这个变量将被模块代码根据需要使用,并且这个连接保持打开状态。例如:
var MongoClient = require('mongodb').MongoClient;
var mongo = {}; // this is passed to modules and code
MongoClient.connect("mongodb://localhost:27017/marankings", function(err, db) {
if (!err) {
console.log("We are connected");
// these tables will be passed to modules as part of mongo object
mongo.dbUsers = db.collection("users");
mongo.dbDisciplines = db.collection("disciplines");
console.log("aaa " + users.getAll()); // displays object and this can be used from inside modules
} else
console.log(err);
});
var users = new(require("./models/user"))(app, mongo);
console.log("bbb " + users.getAll()); // not connected at the very first time so displays undefined
然后另一个模块 models/user
看起来像这样:
Users = function(app, mongo) {
Users.prototype.addUser = function() {
console.log("add user");
}
Users.prototype.getAll = function() {
return "all users " + mongo.dbUsers;
}
}
module.exports = Users;
现在我有可怕的感觉,这是错误的,所以有任何明显的问题与这种方法,如果是这样,如何使它更好?