在0.13.x中,我可以通过以下方式完成:
ReactRouter.run(Routers, ReactRouter.HistoryLocation, function (Component, state) {
React.render(<Component />, document.getElementById("global_container"), function () {
console.log("render!");
//i can get state here!
});
});
&#13;
但是在1.0.x中,我如何获得location.pathname?
答案 0 :(得分:0)
在您的路线组件上使用componentWillReceiveProps
,或在onUpdate
上使用<Router>
挂钩。