开发者问题收集

未捕获的类型错误:无法在 MERN Stack 应用中读取未定义的属性(读取“params”)

2022-04-30
143

我正在开发一款可以执行 CRUD 操作的 MERN 堆栈应用。但更新似乎不起作用。执行更新操作时,我可以在浏览器控制台中看到更新的值,但它似乎没有更新数据库中的值,并且不断出现我在标题中提到的错误。提前致谢。

import React, {Component} from 'react';
import axios from 'axios';
import Sidebar from '../../components/sidebar/Sidebar';
import Navbar  from '../../components/navbar/Navbar';
import "./dbtrial.scss";

export default class DrUpd extends Component{
  constructor(props){
    super(props);
    this.onChangeName= this.onChangeName.bind(this);
    this.onChangeEmail = this.onChangeEmail.bind(this);
    this.onChangePhone = this.onChangePhone.bind(this);
    this.onChangeAddress= this.onChangeAddress.bind(this);
    this.onChangeCountry= this.onChangeCountry.bind(this);
    this.onSubmit = this.onSubmit.bind(this)
    this.state = {
      name: '',
      email: '',
      phone: '',
      address: '',
      country: '',
      driver:[]
    }
  }
  
  componentDidMount(){
    axios.get('http://localhost:3001/driver/getDrivers')
    .then(response =>{
        this.setState({
            //driver: response.data
            name: response.data.name,
            email: response.data.email,
            phone: response.data.phone,
            address: response.data.address,
            country: response.data.country
        })
        .catch((error) =>{
            console.log(error);
        })
    })
}
  onChangeName(e){
    this.setState({
      name: e.target.value
    })
  }
  onChangeEmail(e){
    this.setState({
      email: e.target.value
    })
  }
  onChangePhone(e){
    this.setState({
      phone: e.target.value
    })
  }
  onChangeAddress(e){
    this.setState({
      address: e.target.value
    })
  }
  onChangeCountry(e){
    this.setState({
      country: e.target.value
    })
  }
  onSubmit(e){
    e.preventDefault();
    const driver={
      name: this.state.name,
      email: this.state.email,
      phone: this.state.phone,
      address:this.state.address,
      country: this.state.country
    }
    console.log(driver)
    axios.post('http://localhost:3001/driver/update/:id'+this.props.match.params.id,driver )
    .then(res => console.log(res.data))
    .catch((error) =>{
      console.log(error);
  })
    
   
  }
  render(){
    return(
      <div className="db">
            <Sidebar />
            <div className="dbq">
              <Navbar />
              <h3>Edit Driver</h3>
              <form onSubmit={this.onSubmit}>
                  <div className="formInput">
                    <label>Name:</label>
                    <input type="text"
                    required
                    
                    value={this.state.name}
                    onChange={this.onChangeName}
                    />
                  </div>
                  <div className="formInput">
                    <label>Email:</label>
                    <input type="email"
                    required
                    
                    value={this.state.email}
                    onChange={this.onChangeEmail}
                    />
                  </div>
                  <div className="formInput">
                    <label>Phone:</label>
                    <input type="text"
                    required
                    
                    value={this.state.phone}
                    onChange={this.onChangePhone}
                    />
                  </div>
                  <div className="formInput">
                    <label>Address:</label>
                    <input type="text"
                    required
                    
                    value={this.state.address}
                    onChange={this.onChangeAddress}
                    />
                  </div>
                  <div className="formInput">
                    <label>Country:</label>
                    <input type="text"
                    required
                    
                    value={this.state.country}
                    onChange={this.onChangeCountry}
                    />
                  </div>
                  <div className="formInput">
                    
                  <input type="submit" value="Edit Driver" onSubmit={() => this.onSubmit()}  />
                  </div>
              </form>
            </div>
      </div> 
    )
  }
}
router.route('/update/:id').post((req, res) => {
    Driver.findById(req.params.id)
      .then(driver => {
        driver.name = req.body.name;
        driver.email = req.body.email;
        driver.phone = req.body.phone;
        driver.address = req.body.address;
        driver.country =req.body.country;
        
        driver.save()
          .then(() => res.json('Driver updated!'))
          .catch(err => res.status(400).json('Error: ' + err));
      })
      .catch(err => res.status(400).json('Error: ' + err));
  });
2个回答

在您的前端,您正在获取以下网址:

axios.post('http://localhost:3001/driver/update/:id'+this.props.match.params.id,driver )

但您的网址应该是:

axios.post('http://localhost:3001/driver/update/'+this.props.match.params.id,driver)

这样,this.props.match.params 用作 :id,第一种情况下您发送的是 ':id' 作为 id 而不是 match.params,然后是您的后端

Driver.findById(req.params.id) //req.params.id = ':id' in your case
arthurg
2022-04-30

尝试像这样在 post 方法中删除:id

如果您在前端收到错误,请不要初始化:id 路由组件

<Route path={"/yourpath/:id"} component ={yourcomponent}/>

如果您在后端收到错误。

axios.post('http://localhost:3001/driver/update/'+this.props.match.params.id,driver )
.then(res => console.log(res.data))
.catch((error) =>{
  console.log(error)})

因为在路由中您将 params 定义为 id,所以您没有在 post 方法 URL 中指定。此外,每次更新 setState 时都使用 async-await,例如 async componentDidMount (),并使用 await,例如 await this.setState({yourState})。 如果您使用 await,请不要忘记在函数前使用 async。

谢谢。

Nithish Kumar
2022-04-30