redux-form:单击更改特定字段值

时间:2017-12-27 09:29:46

标签: reactjs redux redux-form

如何更改事件中特定字段的值。

示例无法正常工作(无法读取未定义的属性'名字'

onclick1() {
  this.props.fields.firstname.onChange("John")
}
render() {
 const { handleSubmit } = this.props;
 return (
  <div>
   <form onSubmit={handleSubmit(this.submit.bind(this))}>

      <Field
        name="firstname"
        component={TextField}
        label="first name"
      />
      <button onClick="this.onclick1()">Set name to John</button>

      <button type="submit">
        okay
      </button>
   </form>

此处提出了此解决方案,但它对我不起作用 https://stackoverflow.com/a/36916183/160059

redux-form v7

1 个答案:

答案 0 :(得分:2)

我在你的代码中看到了一些问题:

<button onClick="this.onclick1()"> 

应该是:

<button onClick={this.onclick1}>

和onclick1应该以某种方式绑定到组件。此外,我通常使用change方法来设置字段值。所以我会将你的代码更改为:

class ComplexForm extends React.PureComponent {
  constructor(props) {
    super(props);
    this.onclick1 = this.onclick1.bind(this);
  }

  onclick1() {
    this.props.change("firstname", "John");
  }

  render() {
    const { handleSubmit } = this.props;
    return (
      <form onSubmit={handleSubmit}>
        <Field name="firstname" component="input" label="first name" />
        <button onClick={this.onclick1}>Set name to John</button>
      </form>
    );
  }
}

请注意,我只重写了代码的某些相关部分,而且我使用的是标准input组件,因为我不知道您的TextField是怎样的。查看在线演示here