我在我的项目中使用 Redux 和 React。我在 App.js 中有一些路由。我也在我的项目中使用 react-redux 中的 connect 函数。为了防止更新阻塞问题,我通常以这种方式包装我的组件
withRouter(connect(mapStateToProps, mapDispatchToProps)(App)),
但是,如果我更改了 withRouter 的顺序并连接,则它不起作用:
connect(mapStateToProps, mapDispatchToProps)(withRouter(App))
我在 App.js 中有 console.log props。它已经收到位置和历史props。我正在弄清楚为什么顺序很重要背后的理论?