redux-form
v7を使用すると、フィールド値を設定する方法がないことがわかります。 form
には、2つのselect
コンポーネントがあります。最初のselect
コンポーネントの値が変更されると、2番目の値はクリアされます。
クラスのレンダリング:
<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
changeフックを追加し、他の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}
/>
)
}
this.handleSelectChange({ value, type: input.name })
でonChangeロジックを使用し、redux-formから change
アクション を使用できます。
ドキュメントによると:
change(field:String、value:any):Function
Reduxストアのフィールドの値を変更します。これはバインドされたアクションクリエーターなので、何も返しません。
コード:
handleSelectChange = (value, type) => {
if(type === "site") {
this.props.change('net', "newValue");
}
}
const mapDispatchToProps = (dispatch) => {
return bindActionCreators({change}, dispatch);
}