javascript-是否有必要在ComponentWillUnmount中卸载状态?

前端之家收集整理的这篇文章主要介绍了javascript-是否有必要在ComponentWillUnmount中卸载状态? 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在我的应用程序中componentDidMount中执行服务器请求,所以我在componentDidMount中调用setState.是否需要在componentWillUnmount中卸载此状态?这是避免我的应用程序中发生内存泄漏的解决方案吗?请帮助我找到一个解决方案.谢谢!

样例代码

componentDidMount(){
  fetch({ /* ... */ })
    .then(res => res.json())
    .then((responseData) => {
      this.setState({
        result: responseData.Meta.data
      })
    })
}

componentWillUnmount(){
  this.setState({
    result:''
  })
}
最佳答案
不需要卸载状态.将结果设置为空字符串并不比将其设置为任何其他值更好.

内存泄漏的原因是在某处使用了对对象(组件实例)的引用,这可以防止该对象作为未使用的对象被垃圾回收.

在这段代码中,可以在卸载组件后调用setState,因为请求不会被取消.这将导致警告:

Can’t perform a React state update on an unmounted component. This is a no-op,but it indicates a memory leak in your application. To fix,cancel all subscriptions and asynchronous tasks in the componentWillUnmount method.

如果请求足够长,则将导致内存泄漏.为了避免这种情况,需要取消导致setState调用的请求或承诺.至于Fetch API请求,可以用AbortController完成.

猜你在找的JavaScript相关文章