问题: 无奈对未装置的组件执行 React 状态更新。这是一个 no-op,但它示意应用程序中存在内存透露。要修复此问题,请勾销 componentWillUnmount 办法中的所有订阅和异步工作。
解决办法
componentWillUnmount() {this.setState = () => {return;};
}
问题: 无奈对未装置的组件执行 React 状态更新。这是一个 no-op,但它示意应用程序中存在内存透露。要修复此问题,请勾销 componentWillUnmount 办法中的所有订阅和异步工作。
解决办法
componentWillUnmount() {this.setState = () => {return;};
}