我一直在阅读和阅读,但仍然对在整个 NodeJs 应用程序中共享相同数据库 (MongoDb) 连接的最佳方式感到困惑。据我了解,当应用程序启动并在module之间重用时,连接应该是打开的。我目前对最佳方法的想法是server.js
(一切开始的主文件)连接到数据库并创建传递给module的对象变量。连接后,module代码将根据需要使用此变量,并且此连接保持打开状态。例如:
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
然后另一个modulemodels/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;
现在我有一种可怕的感觉,这是错误的,所以这种方法是否有任何明显的问题,如果有,如何使它变得更好?