如何删除作为匿名函数的事件监听器?

时间:2019-04-12 14:46:48

标签: javascript removeeventlistener

我已经在Angular应用的iframe中实现了html5迷你游戏,但是从中接收数据却很麻烦。我以为我可以与事件监听器一起使用,但是现在它在打开页面时就成为一个,但在关闭页面时并没有将其删除。因此,现在重新打开页面会将多个事件侦听器留在原处。

由于我希望从事件中获取数据,并且希望使用同一类中的其他函数,因此我已经像这样实现了

ngOnInit(){
window.addEventListener('message', (event) =>{
//do some stuff
this.someMethodINeed();
}

}

但是现在我无法删除此侦听器,因为该函数是匿名的。 我想像这样实现它:

ngOnInit(){
window.addEventListener('message', this.handleEvent);
}

public handleEvent(event){
//do some stuff
this.someMethodINeed();
}

public navigate(path: string){
window.removeEventListener('message', this.handleEvent);
//navigate logic
}

但是现在它抱怨'this'是未定义的,因为通过事件侦听器执行时,该范围不再存在。

有人知道删除匿名事件监听器的方法,还是 给事件监听器提供一个函数,使其仍然可以调用同一类中的方法?

在此感谢您,在过去的几个小时中,我确实为此感到头疼。

根据要求编辑原始代码

@Component({
  selector: 'seed-minigames',
  templateUrl: './minigames.component.html',
  styleUrls: ['./minigames.component.scss']
})
export class MinigamesComponent implements OnInit {
  constructor(public navigationService: NavigationService, public router: Router, private minigamesService: MinigamesService) {
}

  ngOnInit() {    
      var minigameServerAdress = this.minigamesService.MinigameServerAdress();
      //makes url for specific user, which sends user id
      var url = this.minigamesService.makeUrl();
      //set the iframes source to that url
      document.getElementById('minigame-iframe').setAttribute( 'src', url);
        //adding listener which listens for scores from the minigame, after the minigame page has been opened
        window.addEventListener('message', (event) => {
            //check the origin of the data
            if (~event.origin.indexOf(minigameServerAdress)) {
                //navigate to the homepage if the game is closed
                if(event.data == "exit"){
                    this.navigate(' ')
                }
                //otherwise procces the data as scores.
                else{
                    this.minigamesService.sendScores(event.data);
                }

            } else { 
                //the source wasnt confirmed, the data wasnt from our server, so we wont use this data.
                console.log("cant confirm source: "+ event.origin);
                return; 
            }
        }); 
  }

      // Navigate to a specific path.
      public navigate(path: string) {
        //this should remove the event listener, but im not sure how yet.
        // Navigate to 'path'
        this.router.navigate([path]);
    }
}

1 个答案:

答案 0 :(得分:0)

您不能使用匿名函数来做到这一点。您必须具有对侦听器功能的引用。

关于this未定义的问题-这是JS中的常见问题,值得一试。您可以使用bind并将结果存储在变量中,也可以使用箭头函数(如果有)。