【发布时间】:2017-01-28 02:05:18
【问题描述】:
使用withRouter HOC
https://github.com/ReactTraining/react-router/blob/master/upgrade-guides/v2.4.0.md,有没有办法得到location的信息?
还是我们仍然需要使用我们自己的上下文提供者和 hoc 来访问它?
【问题讨论】:
标签: react-router
使用withRouter HOC
https://github.com/ReactTraining/react-router/blob/master/upgrade-guides/v2.4.0.md,有没有办法得到location的信息?
还是我们仍然需要使用我们自己的上下文提供者和 hoc 来访问它?
【问题讨论】:
标签: react-router
location 是withRouter 注入到您的组件中的道具之一。
const withRouter(({ location }) => (
<div>You are here: {location.pathname}</div>
))
【讨论】: