如何将Match对象包含到ReactJs组件类中?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何将Match对象包含到ReactJs组件类中?相关的知识,希望对你有一定的参考价值。

我试图通过将Match对象传递给我的react组件类来使用我的url作为参数。但它不起作用!我在这做错了什么?

当我将我的组件创建为javascript函数时,一切正常,但是当我尝试将我的组件创建为JavaScript类时,它不起作用。

也许我做错了什么?如何将Match对象传递给我的类组件,然后使用它来设置组件的状态?

我的代码:

import React, { Component } from 'react';

import axios from 'axios';

import PropTypes from 'prop-types';

class InstructorProfile extends Component {  

  constructor(props, {match}) {

    super(props, {match});

    this.state = {
        instructors: [],
        instructorID : match.params.instructorID
    };

  }

   componentDidMount(){


      axios.get(`/instructors`)
      .then(response => {
        this.setState({
          instructors: response.data
        });
      })
      .catch(error => {
        console.log('Error fetching and parsing data', error);
      });
    }

  render(){
    return (
      <div className="instructor-grid">

        <div className="instructor-wrapper">

       hi

        </div>

      </div>
    );
  }
}

export default InstructorProfile;
答案

React-Router的Route组件通过props将match对象传递给它默认包装的组件。尝试使用以下内容替换您的constructor方法:

constructor(props) {
    super(props);
    this.state = {
        instructors: [],
        instructorID : props.match.params.instructorID
    };
}
另一答案

你的构造函数只接收props对象,你必须把match放进去...

constructor(props) {
  super(props);
  let match = props.match;//← here

  this.state = {
    instructors: [],
    instructorID : match.params.instructorID
  };
}

然后你必须通过props int父组件传递那个匹配对象:

// in parent component...
render(){
  let match = ...;//however you get your match object upper in the hierarchy
  return <InstructorProfile match={match} /*and any other thing you need to pass it*/ />;
}
另一答案

在组件类中使用匹配

如反应路由器文档中所述。在组件类中使用this.props.match。在常规函数中使用({match})。

使用案例:

import React, {Component} from 'react';
import {Link, Route} from 'react-router-dom';
import DogsComponent from "./DogsComponent";

export default class Pets extends Component{
  render(){
    return (
      <div>
        <Link to={this.props.match.url+"/dogs"}>Dogs</Link>
        <Route path={this.props.match.path+"/dogs"} component={DogsComponent} />
      </div>

    )

  }
}

或使用渲染

<Route path={this.props.match.path+"/dogs"} render={()=>{
  <p>You just clicked dog</p>
}} />

经过几天的研究,它对我有用。希望这可以帮助。

以上是关于如何将Match对象包含到ReactJs组件类中?的主要内容,如果未能解决你的问题,请参考以下文章

Reactjs 将动态组件添加到其他组件中

将函数提取到独立的 reactjs 组件中会抛出对象作为 React 子级无效(找到:[object Window])

ReactJS - 如何在将数据发布到数据库后重新渲染功能组件

如何在 Reactjs 中将数据从子组件传递到父组件? [复制]

为什么选择我--ReactJS

如何将从数据库接收到的数据作为道具传递给 Reactjs 中的另一个组件