English 中文(简体)
node.js:对进口模块进行范围界定
原标题:node.js: Scoping of imported modules

我和节点Js一起玩耍, 依据这个 精彩的辅导 我创建了两个提供者(SchemaProvider和实体Provider)。

他们看起来都像:

var Db = require( mongodb ).Db;
var Connection = require( mongodb ).Connection;
var Server = require( mongodb ).Server;
var BSON = require( mongodb ).BSON;
var ObjectID = require( mongodb ).ObjectID;

EntityProvider = function(host, port) {
this.db = new Db( timerange , new Server(host, port, {auto_reconnect: true}, {}));
this.db.open(function() {
    console.log("Schema Provider has connected and may be used as of now.");
});
};

EntityProvider.prototype.getCollection = function(callback) {
this.db.collection( entity , function(error, collection) {
    if (error) {
        callback(error)
    } else {
        callback(null, collection);
    }

});
};

EntityProvider.prototype.findById = function(id /* The id to be found */, callback) {
this.getCollection(function(error, collection) {
    if (error) {
        callback(error);
    } else {
        collection.findOne({_id: id}, function(error, result) {
            if (error) {
                callback (error);
            } else {
                callback(null, result);
            }
        });
    }
});
};

在App.js中,我要求(供应商)在两个供应商都有定义的情况下提供。

然后我会说:

schemaProvider = new SchemaProvider( 192.168.0.50 , 27017); 
entityProvider = new EntityProvider( 192.168.0.50 , 27017); 

现在,我创建了一个名为 dao (我来自java/spring 角度:-) 的模块。 由于我没有使用“ var”, 两者的变量和提供者都可以进入我的 DAO 。 如果我使用“ var ”, 供应商将无法进入 。

我的问题是:

如果我想在整个应用程序中只使用一个供应商的例子,那我该怎么办呢?

提前感谢!

最佳回答

设置全局( 不使用 var) 是一个非常糟糕的做法, 您应该永远避免 。

如果您想要在您的整个应用程序中只包含一个提供者实例, 您可以做类似的事情 :

服务提供人js

var providerInstance;

// define provider here

module.exports = function() {
  providerInstance = providerInstance || new Provider( 192.168.0.50 , 27017);
  return providerInstance;
}

如此一来, 提供者对象只创建一次, 然后每次您需要它时再重新使用 :

应用( a.js)

var provider = require( ./provider )();

应用程序2.js

// using the same object as in 应用( a.js)
var provider = require( ./provider )();
问题回答

暂无回答




相关问题
PHP object Singleton not working

I am programming a website backend in PHP and I need to encapsulate $_SESSION in a class. I ve made my Session class a singleton but I am having trouble using it. class Session { private static $...

Singleton pattern + __construct in PHP4

To clarify: no I can t make this pure PHP5 yes this code works in PHP 4.3.9. I don t have any real world experience implementing or supporting PHP4 but I had to recently change my class so it ...

ASP.NET Webforms IHttpModule Singleton

I have a class that implements IHttpModule in a separate assembly from a website. The module implementation intercepts requests and rewrites urls for the website. The mappings are stored in a ...

Should WCF service typically be singleton or not?

I believe Jimmy Nillson said he generally made his webservices singletons. Is this the preferred method, and with WCF? Other than making the service methods static, is there something else to be done?

Java: unable to access static singleton method

i am facing one problem.i have a class named "ReportingService" and it should be singleton and is is extending "CommonService". package MyApp.Services.ReportingService; public class ReportingService ...

C++ Threadsafe Singleton (NOT FOR INIT)

So I want to access a singleton class from multiple threads. Conceptually I d think that calling non-const methods on this singleton instance would be not thread-safe. I ve been looking online and no ...

@staticmethod with @property

I want Stats.singleton.twitter_count += 1 and I thought I could do class Stats: singleton_object = None @property @staticmethod def singleton(): if Stats.singleton_object: ...

热门标签