为了账号安全,请及时绑定邮箱和手机立即绑定

更改路由 Vuejs 时的 removeEventListener

更改路由 Vuejs 时的 removeEventListener

饮歌长啸 2023-04-27 15:26:10
当我挂载页面时,我添加了一个 eventListner,如果用户想要更改路由,我想将其删除。但在我的情况下,在我更改路线后该事件仍然可用,如果我关闭选项卡,我仍然会收到警报。  mounted: function () {    window.addEventListener("beforeunload", this.detectTabClose);  },  beforeRouteLeave(to, from, next) {    //gets here and the route is changed, but this event is not removed    window.removeEventListener("beforeunload", this.detectTabClose, true);    next();  },detectTabClose(e) {    var confirmationMessage = "o/";    (e || window.event).returnValue = confirmationMessage;    return confirmationMessage;},
查看完整描述

1 回答

?
回首忆惘然

TA贡献1847条经验 获得超11个赞

您可以删除 beforeDestroy 挂钩上的事件侦听器

beforeDestroy() { 
  window.removeEventListener("beforeunload", this.detectTabClose);
},


查看完整回答
反对 回复 2023-04-27
  • 1 回答
  • 0 关注
  • 119 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信