默认情况下,Redux表单字段的初始值在文本框更改为空时消失

时间:2019-07-05 10:32:34

标签: reactjs react-native react-redux redux-form saga

我正在使用Redux-Form版本8.2.4,

我已默认将某些Obects声明为null:

import { FieldArray } from 'redux-form';

 this.props.addValues({ value 1: null, value 2: null })

 <FieldArray name="TestData" component={this.getData}/>

当我在文本框中使用onChange函数时,在字段中分配的值将推入数组。 但是,当文本框为空时,字段值将从数组本身中删除,

我想默认将值保留为null而不是从数组中删除

我用过

onChildParamInit={this.onChildParamInit.bind(this)}

onChildParamInit = () => {
this.props.change('value1' , null);
}

但是它不起作用,请帮助

0 个答案:

没有答案