从ReactJS中的其他组件输入defaultValue

问题描述

代码

我正在尝试从其他Component(条形码扫描仪)提取值。 它在控制台中显示正确的值,如何在ReactJS

的输入字段中填充值

Component1

  <Redirect
    to={{
      pathname: "/users",state: { barcode: this.state.barcode },}}
  />

component2

  state = {
    barcode: "nothing",name: "",phone: "",};

  componentDidMount() {
    console.log(this.props.location.state);
    if (this.props.location.state) {
      this.setState({ barcode: this.props.location.state });
    }
  }

<input
   type="text"
   defaultValue={this.state.barcode}
/>

console.log(this.props.location.state)显示以下内容

enter image description here

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)