当我使用我的数据填充表单时,它会成功将其添加到redux状态
如果我没有填充图像字段,则使用handleSubmit正确返回值。
当我将图像添加到图像字段时,它会更新值状态并出于某种原因初始状态。并且handleSubmit仅从初始状态返回此图像字段,在其他字段上为空。
答案 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);