>  기사  >  웹 프론트엔드  >  node.js中的events.emitter.once方法使用说明_node.js

node.js中的events.emitter.once方法使用说明_node.js

WBOY
WBOY원래의
2016-05-16 16:27:521564검색

方法说明:

为指定事件注册一个 单次 监听器,所以监听器至多只会触发一次,触发后立即解除该监听器。

语法:

复制代码 代码如下:

emitter.once(event, listener)

接收参数:

event            (string)             事件类型

listener         (function)         触发事件时的回调函数

例子:

复制代码 代码如下:

server.once('connection', function (stream) {
  console.log('Ah, we have our first user!');
});

源码:

复制代码 代码如下:

EventEmitter.prototype.once = function(type, listener) {
  if (!util.isFunction(listener))
    throw TypeError('listener must be a function');
  function g() {
    this.removeListener(type, g);
    listener.apply(this, arguments);
  }
  g.listener = listener;
  this.on(type, g);
  return this;
};
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.