redux-form:handlesSubmit在其中一个字段为file时返回空表单值

时间:2018-06-14 04:11:15

标签: react-native redux-form

当我使用我的数据填充表单时,它会成功将其添加到redux状态

redux form values

如果我没有填充图像字段,则使用handleSubmit正确返回值。

当我将图像添加到图像字段时,它会更新值状态并出于某种原因初始状态。并且handleSubmit仅从初始状态返回此图像字段,在其他字段上为空。

1 个答案:

答案 0 :(得分:0)

问题代码在此功能中,我正在更新现有图像值。

let updatedImages = this.props.images.input.value;
updatedImages.push(...images);
this.props.images.input.onChange(updatedImages);

解决方案:

let updatedImages = [...this.props.images.input.value];
updatedImages.push(...images);
this.props.images.input.onChange(updatedImages);