如何访问“this.props.match.params”以及其他props?

IT技术 javascript reactjs react-router
2021-05-11 10:39:18

我的父组件中有此代码:

<Route path='/champions/:id' render={(props) => <ChampionDetails {...props} match={this.handleMatch}/>}/>

其中匹配props将是一个从子组件(ChampionDetails)中检索数据的函数。我的 ChampionDetails(子)组件的片段:

    import React, { Component } from 'react';

    class ChampionDetails extends Component {
      state = {
        champId:this.props.match.params.id,
        champData:null,
        match:false
      }

      componentDidMount(){
        console.log('ChampionDet mounted')
        this.handleChampInfo();
        console.log(this.props.match)
      }

      componentDidUpdate(){
        console.log('ChampionDet updated')
      }


      handleChampInfo=()=>{
        let champData = [];
        let id = this.state.champId
        console.log(id)
        fetch('/api/getChampion?id='+id)
          .then(data=> { return data.json() })
          .then(json=> {
            console.log(json.data);
            champData.push(json.data);
            this.setState({
              champData:json.data,
              match:true
            })
            this.props.match(true)
            // this.props.history.push('/champions/'+id)
          })
          .catch(err=>{
            console.log(err)
          })
      }

      render(){
        return(
          <div>
            <p>{this.state.champId}</p>
            {this.state.champData===null ? null:<p>{this.state.champData.roles}</p>}
          </div>
        )
      }
    }

    export default ChampionDetails;

这里的问题是,如果我在我父母的路线中有 match={},那么 this.props.match.params.id 将变为未定义。如果我删除 match={} 那么我可以检索 this.props.match.params.id

我想知道是否有可能在我的情况下仍然可以访问 this.props.match.params.id 的同时传递其他props。

任何帮助都感激不尽!

3个回答

如果您使用的是react-routerversion >=4,您应该能够通过withRouterHOC访问路由器内部任何组件的路由器参数例如:

import { withRouter } from 'react-router-dom';
...
export withRouter(ChampionDetails);

您可以matchProps作为来自路由器的props传递this.props对于来自父级的任何props,然后避免覆盖props - 您的matchprops正在覆盖路线中的props:

<Route path='/champions/:id' render={(matchProps) =>
  <ChampionDetails
    {...matchProps}
    {...this.props}
    handleMatch={this.handleMatch}
  />
}/>

当你传播{...props}你的matchprops时,会覆盖 react-router 的match.

Match props是 的一部分react-router-dom,因此通过制作另一个名为 match 的props,您将覆盖它。

最简单的方法:只需将 重命名match={this.handleMatch}/>}为其他类似的东西 matchHandler={this.handleMatch}/>}

如果必须使用名称match,请将其销毁为const {matchHandler : match} = this.props