React内存泄漏问题结局方案

Warning: Can't perform a React state update on 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 componenWillUnmount method.

导致原因:

    很明显这种情况就是在 dom 结构销毁的时候,事件却没有清除导致的内存泄漏,所以我们需要在componentWillUnmount的时候去清除挂载的

  这里就提到了内存泄露,当我们在使用事件绑定,setInterval,setTimeOut 或一些函数的时候,但是却没有在组件销毁前清除的时候会造成内存泄露。这里我们手动的再componentWillUnmount去清除相关的方法即可。

解决方案:

    componentwillUnmount(){

        this.setState=()=>{

             return;

       }

  }

 

你可能感兴趣的:(react)