scroll事件移除
2020-07-25 本文已影响0人
2020路飞
在离开当前页面的时候,需要在销毁组件之前移除滚动事件,否则跳转路由之后,事件仍然会被调用,浪费资源,引发bug
componentWillUnmount() {
window.removeEventListener('scroll', this.handleScroll);
}
componentWillUnmount() {
window.removeEventListener('scroll', this.handleScroll);
}