0
私は自分のプロジェクトでtypescriptとwebpack 2でHMRを有効にしようとしましたが、変更を加えるたびにログとストアUIが良いと予想されるが、ストアがその状態を失ったので、UIが期待ものではないホット更新バンドルをロードした後、部分的に更新されMobXとHMR:変更がすべての子に反映されない可能性があるので、店舗を交換しないでください
index.js:832 MobX Provider: Provided store 'appStore' has changed. Please avoid replacing stores as the change might not propagate to all children
その元の値にリセットされる(廃棄状態)。
HMR更新の間にmobxストアの状態を維持する正しいパターンは何ですか?
現在coodeは、次のようになります。
const uiStore = new UiStore();
const appStore = new AppStore();
function render() {
ReactDOM.render(
<AppContainer>
<Provider appStore={appStore} uiStore={uiStore}><App/></Provider>
</AppContainer>, document.getElementById('root'))
}
const hot = (module as any).hot
if (hot)
hot.accept(() => {
render()
})
render()