停止监听 Mojo.Event
我在 webOS 应用程序中有几个事件侦听器,每个侦听器都是这样设置的:
this.controller.listen(
'aWidget',
Mojo.Event.widgetEvent,
this.respondToWidgetEvent.bindAsEventListener(this)
);
为了停止侦听,我编写如下代码:
this.controller.stopListening(
'aWidget',
Mojo.Event.widgetEvent,
this.respondToWidgetEvent.bindAsEventListener(this)
);
但是,我现在意识到我的侦听器可能不会停止。当我在函数上调用 bindAsEventListener
时,每次都会返回相同的对象吗?如果不是,stopListening
是否确保删除适当的侦听器?
I have several event listeners in a webOS app and each one I set up like this:
this.controller.listen(
'aWidget',
Mojo.Event.widgetEvent,
this.respondToWidgetEvent.bindAsEventListener(this)
);
And to stop listening I write code like this:
this.controller.stopListening(
'aWidget',
Mojo.Event.widgetEvent,
this.respondToWidgetEvent.bindAsEventListener(this)
);
However, I realize now that my listeners may not be stopping. When I call bindAsEventListener
on a function, do I get back the same object each time? If not, does stopListening
make sure to remove the appropriate listener anyway?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我没记错的话,每次调用 bindAsEventListener() 都会返回一个新实例。通过调用一次并设置 var 来防止该操作:
If I remember correctly each call to bindAsEventListener() returns a new instance. Prevent that action by calling it once and setting a var: