提到withRouter
HOC
https://github.com/ReactTraining/react-router/blob/master/upgrade-guides/v2.4.0.md,有没有办法获得location
信息?
或者我们是否还需要使用我们自己的上下文提供程序和hoc来访问它?
答案 0 :(得分:0)
location
是withRouter
注入组件的道具之一。
const withRouter(({ location }) => (
<div>You are here: {location.pathname}</div>
))