4
當我使用redux-form
v7時,我發現無法設置字段值。現在在我的form
我有兩個select
組件,當第一個select
組件值發生變化時,第二個值將會清除。以編程方式更改Redux窗體字段值
渲染:
<div className={classNames(style.line, style.largeLine)}>
<div className={style.lable}>site:</div>
<div className={style.content}>
<Field
name="site"
options={sites}
clearable={false}
component={this.renderSelectField}
validate={[required]}
/>
</div>
</div>
<div className={classNames(style.line, style.largeLine)}>
<div className={style.lable}>net:</div>
<div className={style.content}>
<Field
name="net"
options={nets}
clearable={false}
component={this.renderSelectField}
validate={[required]}
warning={warnings.net}
/>
</div>
</div>
現在我加入select
變化掛鉤,我怎麼可以改變其他select
值
renderSelectField = props => {
const {
input,
type,
meta: { touched, error },
...others
} = props
const { onChange } = input
const _onChange = value => {
onChange(value)
this.handleSelectChange({ value, type: input.name })
}
return (
<CHSelect
error={touched && error}
{...input}
{...others}
onChange={_onChange}
onBlur={null}
/>
)
}
感謝了很多,它的真棒 – taven
有沒有在同一時間設置多個領域的API?不在initialValues期間 –