我正在使用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);
}
但是它不起作用,请帮助