我在我的索引文件上有这个渲染
render(
<Provider store={store}>
<Router history={browserHistory} routes={routes}
onUpdate={() => window.scrollTo(0, 0)}/>
</Provider>,
document.getElementById('root')
)
我需要能够将以前的位置路径与新的位置路径进行比较。
我尝试在onUpdate内使用变量失败
谢谢