반응형
react-router가 자식 구성 요소에서 this.props.location을 가져옵니다.
내가 이해하는대로 및 같은 라우팅 관련 소품을 <Route path="/" component={App} />
제공합니다 . 내 구성 요소에 중첩 된 하위 구성 요소가 많이있는 경우 하위 구성 요소가 다음없이 이러한 소품에 액세스하도록하려면 어떻게해야합니까?App
location
params
App
- 앱에서 소품 전달
- 창 개체 사용
- 내포 된 하위 구성 요소에 대한 경로 작성
this.context.router
경로와 관련된 정보가있을 거라고 생각했는데 경로 this.context.router
를 조작하는 기능 만있는 것 같습니다.
(업데이트) 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
}
반응형
'IT이야기' 카테고리의 다른 글
문자열에 다른 문자열이 포함되어 있지 않은지 확인하는 Bash (0) | 2021.04.26 |
---|---|
컴파일 및 실행을 위한 CLion 설정 (0) | 2021.04.26 |
새로운 Facebook 앱-FBML 또는 iFrame (0) | 2021.04.25 |
PHP에서 코드 삽입 공격을 방지하는 방법 (0) | 2021.04.25 |
UIImage에서 Exif 데이터 가져 오기-UIImagePickerController (0) | 2021.04.25 |