方法說明:
注冊了指定event的所有監聽器將被作為數組返回。
語法:
代碼如下:
emitter.listeners(event)
接收參數:
event 指定事件
例子:
代碼如下:
server.on('connection', function (stream) {
console.log('someone connected!');
});
console.log(util.inspect(server.listeners('connection')));
// [ [Function] ]
源碼:
代碼如下:
EventEmitter.prototype.listeners = function(type) {
var ret;
if (!this._events || !this._events[type])
ret = [];
else if (util.isFunction(this._events[type]))
ret = [this._events[type]];
else
ret = this._events[type].slice();
return ret;
};