React Router,获取嵌套子级中的位置

时间:2017-01-28 02:05:19

标签: react-router

提到withRouter HOC https://github.com/ReactTraining/react-router/blob/master/upgrade-guides/v2.4.0.md,有没有办法获得location信息?

或者我们是否还需要使用我们自己的上下文提供程序和hoc来访问它?

1 个答案:

答案 0 :(得分:0)

locationwithRouter注入组件的道具之一。

const withRouter(({ location }) => (
  <div>You are here: {location.pathname}</div>
))