简单的Redux-Form组件返回undefined

时间:2018-02-11 17:50:43

标签: javascript reactjs redux react-redux redux-form

刚刚创建此表单作为教程的一部分。但是,每当我提交表单时,我的控制台日志都会给我undefined。我做错了什么?

import React, {Component} from 'react';
import { reduxForm } from 'redux-form';

class Signin extends Component {
  handleFormSubmit({email, password}) {
    console.log(email); // this gives me 'undefined'
  }
  render() {
    const {handleSubmit, fields: {email, password}} = this.props;

    return (
    <form onSubmit={handleSubmit(this.handleFormSubmit.bind(this))}>
      <fieldset className="form-group">
      <label>Email:</label>
      <input {...email} className="form-control" />
      </fieldset>
      <fieldset className="form-group">
      <label>Password:</label>
      <input {...password} className="form-control" />
      </fieldset>
      <button action="submit" className="btn btn-primary">Sign in</button>
    </form>
    );
  }
}

export default reduxForm({
  form: 'signin',
  fields: ['email', 'password']
})(Signin);

2 个答案:

答案 0 :(得分:0)

这看起来像Grider Tutorial。我用这种方式修复它,使用一个renderInput函数来获取该字段。不确定这对你有用。

import React, {Component} from 'react';
import { reduxForm } from 'redux-form';
import { Field } from 'redux-form';


const renderInput = field => (
  <div>
  <input {...field.input} type={field.type} className="form-control" />
  {field.meta.touched && field.meta.error}
  <span>{field.meta.error}</span>
  </div>
 );

class Signin extends Component {

  handleFormSubmit({email, password}) {
    console.log(email);
    console.log("Hi");

  }
  render() {
    const {handleSubmit, fields: {email, password}} = this.props;

    return (
    <form onSubmit={handleSubmit(this.handleFormSubmit.bind(this))}>
      <fieldset className="form-group">
      <label>Email</label>
      <Field
      name="email"
      component={renderInput}
      type="text" />
      </fieldset>
      <fieldset className="form-group">
      <label>Password</label>
      <Field
      name="password"
      component={renderInput}
      type="text" />
      </fieldset>
      <button action="submit" className="btn btn-primary">Sign in</button>
    </form>
    );
  }
}

export default reduxForm({
  form: 'signin',
  fields: ['email', 'password']
})(Signin);

答案 1 :(得分:0)

这是由于对redux-form的更新。

我们不是从{email, password}导入this.props的值,而是使用从redux-form导入的Field组件。

import { Field, reduxForm } from 'redux-form';

然后使用它代替您拥有的input标记:

<fieldset className="form-group">
  <label>Email:</label>
  <Field
    name="email"
    className="form-control"
    component="input"
    type="text"
    placeholder="Email"
  />
</fieldset>

此输入与redux-form的连接现在来自name属性,而不是从this.props中提取

重要的是要注意:名称必须与字段中的名称相同:在reduxForm中定义的[]数组:

export default reduxForm({ form: 'signin', fields: ['email', 'password'] })(Signin);

在此基础上,如果您想自定义Field使用的组件,您可以非常轻松地定义自己的自定义组件。

您可以定义一个函数:

,而不是向Field的组件属性提供字符串
<div className="form-group">
  <label>Last name:</label>
  <Field type="text" className="form-control" placeholder="Smith" name="lastName"
  component={textField} />
</div>

textField从另一个文件导入:import {textField} from '../../redux_form_elements';

textField如下:

import React from 'react';

export const textField = (field) => (
  <div>
    <input className="form-control" {...field.input} type={field.type} placeholder={field.placeholder} />
    {field.meta.touched && field.meta.error &&
    <label id="basic-error" className="validation-error-label">This field is required.</label>
  }
  </div>
);