umijs / plugins

🍣 The one-stop shop for official Umi plugins and presets.
349 stars 238 forks source link

【BUG】qiankunModel.ts.tpl的内容存在内存泄漏问题 #776

Open yushicheng opened 2 years ago

yushicheng commented 2 years ago

@umijs/plugin-qiankun中所有需要用到qiankunModel.ts.tpl的版本都存在这个问题

截屏2021-12-26 下午9 31 57

由于setModelState这个函数没有在组件卸载的时候被销毁,导致内存泄漏

会在切换应用的时候提示警告

devScripts.js:6523 Warning: 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 a useEffect cleanup function.
    in Unknown (at Provider.tsx:30)
    in Unknown

我的建议是可以用useEffect来重置这个函数

截屏2021-12-26 下午10 37 26
zyh2123606 commented 2 years ago

同问