在离开当前页面的时候,需要在销毁组件之前移除滚动事件,否则跳转路由之后,事件仍然会被调用,浪费资源,引发bug
componentWillUnmount() {
window.removeEventListener('scroll', this.handleScroll);
}
componentWillUnmount() {
window.removeEventListener('scroll', this.handleScroll);
}
本文标题:scroll事件移除
本文链接:https://www.haomeiwen.com/subject/tlwplktx.html
网友评论