首頁  >  文章  >  web前端  >  node.js中的events.emitter.once方法使用說明_node.js

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

WBOY
WBOY原創
2016-05-16 16:27:521612瀏覽

方法說明:

為指定事件註冊一個 單次 監聽器,所以監聽器至多只會觸發一次,觸發後立即解除該監聽器。

文法:

複製程式碼 程式碼如下:

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