React

react中componentWillUnmount中可以做的事

2020-08-06  本文已影响0人  zyghhhh

说明:

可以做的事

1 清除定时器

componentWillUnmount(){
  clearTimeout(this.timer)
}

2 解绑dom事件

componentWillUnmount(){
  //其他事件也类似
  window.onScroll = null
}

3 清除网络状态

componentWillUnmount(){
  //其他事件也类似
  this.setState = (state,callback) => {
    return
  }
}
上一篇下一篇

猜你喜欢

热点阅读