壮心未与年俱老,死去犹能作鬼雄。这篇文章主要讲述将Redux SubApp与React Router配合使用相关的知识,希望能为你提供帮助。
【将Redux SubApp与React Router配合使用】是否有可能使用这种方法isolating SubApps与React路由器?
问题是每次路由更改时,SubApp将重新呈现,然后redux存储将断开连接。
class BigApp extends Component {
render() {
return (
<
Router history={history} >
<
Route component={SubApp1} />
<
Route component={SubApp2} />
<
Route component={SubApp3} />
<
/Router>
)
}
}
答案是。我有同样的问题。我解决它的方式是here。解决方案的关键是在每个子应用程序的根应用程序和本地存储上维护一个全局存储,并在它们之间使用Observer模式。
推荐阅读
- 找不到模块(无法解析'./AppRoutes')
- 在android中获取位置地址时出错
- 接收广播Intent时出错{act = android.location.PROVIDERS_CHANGED flg = 0x10}
- 获取当前lat长的android
- 经度和纬度GPSTracker Android总是返回0,0
- Android服务在其仍处于活动状态时停止后台处理
- 如何使用网络在Android中使用Fused Location Provider获取位置()
- 如何在Cordova中使用语音识别API(将语音转换为文本)
- 如何验证cordova版本,cordova项目的平台版本以及如何更新它们