(업데이트) V5.1 & Hooks (React> = 16.8 필요)
당신은 사용할 수 있습니다 useHistory
, useLocation
그리고 useRouteMatch
구성 요소에서 얻을 수 match
, history
과 location
.
const Child = () => {
const location = useLocation();
const history = useHistory();
const match = useRouteMatch("write-the-url-you-want-to-match-here");
return (
<div>{location.pathname}</div>
)
}
export default Child
(업데이트) V4 및 V5
당신은 사용할 수 있습니다 withRouter
주입하기 위해 HOC를 match
, history
그리고 location
구성 요소 소품이다.
class Child extends React.Component {
static propTypes = {
match: PropTypes.object.isRequired,
location: PropTypes.object.isRequired,
history: PropTypes.object.isRequired
}
render() {
const { match, location, history } = this.props
return (
<div>{location.pathname}</div>
)
}
}
export default withRouter(Child)
(업데이트) V3
당신이 사용할 수있는 withRouter
주입하기 위해 HOC를 router
, params
, location
, routes
구성 요소 소품이다.
class Child extends React.Component {
render() {
const { router, params, location, routes } = this.props
return (
<div>{location.pathname}</div>
)
}
}
export default withRouter(Child)
원래 답변
props를 사용하지 않으려면 React Router 문서에 설명 된대로 컨텍스트를 사용할 수 있습니다.
먼저 설정해야합니다 당신 childContextTypes
과getChildContext
class App extends React.Component{
getChildContext() {
return {
location: this.props.location
}
}
render() {
return <Child/>;
}
}
App.childContextTypes = {
location: React.PropTypes.object
}
그러면 다음과 같은 컨텍스트를 사용하여 자식 구성 요소의 위치 개체에 액세스 할 수 있습니다.
class Child extends React.Component{
render() {
return (
<div>{this.context.location.pathname}</div>
)
}
}
Child.contextTypes = {
location: React.PropTypes.object
}