React Redux表单提交未给出正确的结果

时间:2018-03-01 08:25:34

标签: reactjs redux react-redux

我尝试使用react和redux实现表单提交。当我在这里提交数据时,我希望得到结果(为了还原目的)。我知道我们可以通过提供' ref'在每个输入标签中。但我想用react-redux方法做什么呢。

demo here

您可以控制并查看作为对象获取的结果。但我没有得到正确的结果。

1 个答案:

答案 0 :(得分:2)

我想问题是你正在使用带有redux-form的<input元素。

我建议改用<Field name="title" component="input" type="text" />

  1. 包括它import { reduxForm, Field } from 'redux-form'
  2. <Field name="title" component="input" type="text" />
  3. console.log("i want the results right here ",form.movieForm.values.title);
  4. 请注意:强烈建议您在组件文件中创建一个捕获输入值的函数,然后调用dispatch动作创建者