如何将 Mongodb 一个实例用于 node.js 中的不同模块
how to use Mongodb one instance to different-different module in node.js
我在 node.js 中使用 mongodb 数据库和 mongodb 模块。
我想知道如何将一个 mongodb 实例用于不同的模块?
我在 app.js 中创建了一个 mongodb 数据库实例。对于路由,我使用了另一个模块 myroutes.js 并且我想在 myroutes.js.[=12= 中重新使用相同的 mongodb 实例(我已经在 app.js 中创建) ]
我该怎么做?
我尝试使用 app.set() 但它不起作用。
您需要访问单例设计模式,它将特定对象的实例数限制为一个。此单个实例称为单例。
例子
var Singleton = (function () {
var instance;
function createInstance() {
var object = new Object("I am the instance");
return object;
}
return {
getInstance: function () {
if (!instance) {
instance = createInstance();
}
return instance;
}
};
})();
function run() {
var instance1 = Singleton.getInstance();
var instance2 = Singleton.getInstance();
alert("Same instance? " + (instance1 === instance2));
}
MongoDB单例参考这个
我在 node.js 中使用 mongodb 数据库和 mongodb 模块。 我想知道如何将一个 mongodb 实例用于不同的模块?
我在 app.js 中创建了一个 mongodb 数据库实例。对于路由,我使用了另一个模块 myroutes.js 并且我想在 myroutes.js.[=12= 中重新使用相同的 mongodb 实例(我已经在 app.js 中创建) ]
我该怎么做? 我尝试使用 app.set() 但它不起作用。
您需要访问单例设计模式,它将特定对象的实例数限制为一个。此单个实例称为单例。
例子
var Singleton = (function () {
var instance;
function createInstance() {
var object = new Object("I am the instance");
return object;
}
return {
getInstance: function () {
if (!instance) {
instance = createInstance();
}
return instance;
}
};
})();
function run() {
var instance1 = Singleton.getInstance();
var instance2 = Singleton.getInstance();
alert("Same instance? " + (instance1 === instance2));
}
MongoDB单例参考这个