node.js 删除事件侦听器不起作用

发布于 2024-11-07 20:56:14 字数 459 浏览 0 评论 0原文

我试图删除一些像这样的事件侦听器:

    var callback = function () {
      someFun(someobj)
    }

    console.log(callback)

    e.once("5", callback);

    uponSomeOtherStuffHappening('',
    function() {
      console.log(e.listeners("5")[0])
      e.removeListener(inTurns, callback)
    })

但它不起作用。

第一个控制台日志显示:

[Function]

第二个控制台日志显示:

[Function: g]

为什么它们不同?

I'm trying to remove some eventlistener like this:

    var callback = function () {
      someFun(someobj)
    }

    console.log(callback)

    e.once("5", callback);

    uponSomeOtherStuffHappening('',
    function() {
      console.log(e.listeners("5")[0])
      e.removeListener(inTurns, callback)
    })

But it doesn't work.

The first console log shows:

[Function]

The second one shows:

[Function: g]

Why are they different?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

穿越时光隧道 2024-11-14 20:56:14

Once() 的实现插入一个函数 g() 以在一次调用后删除监听器。

来自 events.js:

EventEmitter.prototype.once = function(type, listener) {
  if ('function' !== typeof listener) {
    throw new Error('.once only takes instances of Function');
  }

  var self = this;
  function g() {
    self.removeListener(type, g);
    listener.apply(this, arguments);
  };

  g.listener = listener;
  self.on(type, g);

  return this;
};

所以,如果你这样做:

console.log(e.listeners("5")[0].listener);

它们会是相同的。

The implementation of once() inserts a function g() to remove your listener after one call.

From events.js:

EventEmitter.prototype.once = function(type, listener) {
  if ('function' !== typeof listener) {
    throw new Error('.once only takes instances of Function');
  }

  var self = this;
  function g() {
    self.removeListener(type, g);
    listener.apply(this, arguments);
  };

  g.listener = listener;
  self.on(type, g);

  return this;
};

So, if you did this:

console.log(e.listeners("5")[0].listener);

they'd be the same.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文