我有这样的事情:
render(
<Router history={ hashHistory }>
<Route path="/" component={ App } >
<IndexRoute component={ Home }/>
<Route path="/a" component={ A }/>
<Route path="/b" component={ B }/>
</Route>
</Router>,
document.getElementById('root')
);
我希望获得App组件的当前位置。我怎样才能做到这一点?已经尝试使用this.props.location
但undefined
。
我使用的是react-router 3.0.0