react-router从上层组件

时间:2016-12-13 20:26:44

标签: path react-router

我有这样的事情:

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.locationundefined。 我使用的是react-router 3.0.0

0 个答案:

没有答案