构造函数中使用如下代码:
events.EventEmitter.call(this);
另外的方式:
util.inherits(appDAO, events.EventEmitter);
这两种方式是否重复?
原始代码如下:
function appDAO(config){
if(config){
db_option = config;
}
else{
db_option = new db_config();
}
events.EventEmitter.call(this);
logger.debug(db_option);
pool = mysql.createPool(db_option);
//设置mysql连接池单次最大连接数,默认10
//pool.connectionLimit(10);
//设置连接池最大请求队列长度,默认0,即不限制.如果设置了则超过长度时getConnection会返回错误
//pool.queueLimit(0);
logger.info('init mysql pool');
}
//继承events模块,用于处理消息
util.inherits(appDAO, events.EventEmitter);
外部引用appDAO来调用EventEmitter的方法。
我觉得这其中一个语句是没有必要的,不知道我理解的对不对
8 回复
Example:
function O(){
EventEmitter.call(this);
}
util.inherits(O,EventEmitter);
all should use.
签名: 交流群244728015 《Node.js 服务器框架开发实战》 http://url.cn/Pn07N3
also correct, but best both. because need instanceof
sometimes.
EventEmitter new version is corrent, old version must both.
签名: 交流群244728015 《Node.js 服务器框架开发实战》 http://url.cn/Pn07N3