【React踩坑记三】React项目报错Can't perform a React state update on an unmounted component

意思为:我们不能在组件销毁后设置state,防止出现内存泄漏的情况

分析出现问题的原因:

我这里在组件加载完成的钩子函数里调用了一个EventBus的异步方法,如果监听到异步方法,则会更新state中isShowNav的值。

【React踩坑记三】React项目报错Can't perform a React state update on an unmounted component

解决方法

我们应该在组件销毁的时候将异步方法撤销

【React踩坑记三】React项目报错Can't perform a React state update on an unmounted component

this.setState = (state, callback) => {
return;
};

这里有324.57GB的修仙资料。嘿嘿嘿你懂得。/手动狗头

【React踩坑记三】React项目报错Can't perform a React state update on an unmounted component

那么问题来了,如果你也想入坑前端或者学习更多技术,广交天下朋友(基友),认识更多有趣的灵魂的话,欢迎加入前端交流群鸭~

【React踩坑记三】React项目报错Can't perform a React state update on an unmounted component

扫二维码加为好友就完事了!安排~

上一篇:android_layout_relativelayout(二)


下一篇:JavaScript基础视频教程总结(131-140章)