在vue中,写在methods里面的方法,在页面切换时一般就自动销毁了,但是写在window上的事件,需要我们手动解绑,也是为了提高代码执行效率,案例如下:
1、 当我在新闻资讯页面执行滚动事件时,不断从控制台打印出1
image.png
2、切换到其他页面也会执行滚动事件
image.png
代码如下
// 滚动侧边栏浮动 sideFloat() { // tslint:disable-next-line:no-console console.log(1); const scrollTop = document.documentElement.scrollTop || document.body.scrollTop; scrollTop > 410 ? this.isFloat = true : this.isFloat = false; } mounted() { window.addEventListener("scroll", this.sideFloat); }
解决方案,使用生命周期函数beforeDestroy,在页面离开时执行
// 对滚动事件绑定及解绑 beforeDestroy() { window.removeEventListener("scroll", this.sideFloat); }
这样就解决了对全局事件的解绑 +_+
作者:jia林
链接:https://www.jianshu.com/p/bf2bc77e636a
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦