gpt4 book ai didi

javascript - 使用绑定(bind)函数删除 EventListener

转载 作者:行者123 更新时间:2023-12-02 23:07:01 24 4
gpt4 key购买 nike

我正在监听这样的 deviceorientationabsolute 事件(在 ngOnInit 上):

 this.deviceOrientationEvent = this.onDeviceOrientation.bind(this);
window.addEventListener("deviceorientationabsolute", this.deviceOrientationEvent);

我想停止监听 ngOnDestroy 上的该事件。我试过这个:

window.removeEventListener("deviceorientationabsolute", this.deviceOrientationEvent);

但我仍然可以在控制台中看到它正在监听该事件。

我做错了什么?

最佳答案

您可以使用 @HostListener 来处理它,而不是通过 window.addEventListener 方法进行处理,如下所示

@HostListener('window:deviceorientationabsolute', ['$event'])
deviceOrientationAbsoluteEvent(event) { ... }

组件销毁时会自动移除

引用:https://stackoverflow.com/a/41032388/9380944回答以获取更多详细信息。

关于javascript - 使用绑定(bind)函数删除 EventListener,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57541864/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com