我正在更新我的React项目的依赖项(反应路由器4,react-router-redux 5 alpha)。
我的代码如下所示:
ReactDOM.render(
<Provider store={store}>
<ConnectedRouter history={history}>
<HashRouter>
<div>
<Switch>
<Route path='/report-type/:reportType/:rootAddress' component={App}/>
<Route component={App}/>
</Switch>
</div>
</HashRouter>
</ConnectedRouter>
</Provider>,
document.getElementById('root')
)
它在我的本地计算机上运行正常,但无法在服务器上进行路由。我可以看到操作@@router/LOCATION_CHANGE
无法在下一个状态更新routing
密钥。我得到的location: null
应该是一个对象。
阻止它在服务器上运行的两个环境之间可能有什么区别?