0
複数選択フィールドのonChangeフィールドで適切な値が正しく選択されません。フィールドがあり、SelectMultipleコンポーネントを使用していたとしましょう。フィールドで選択肢を選択しても、redux形式の状態は更新されません。選択フィールドの複数のコンポーネントが使用方法ReduxフォームでMultipleを選択しますか?
const onChange = this.props.onChange;
<select ref={name} value={value} onChange={onChange} multiple>
{ emptyValue }
{(optionList) && optionList.map(current => (
<option key={current.value} value={current.value}>{current.name}</option>))
}
</select>
ある
<Field name="distroLists" label="Distribution Lists" component=
{SelectFieldMultiple} type="text"></Field>
誰がどんな考えを持っていますか?