react-select从多选列表中选择一个选项时,我的 formik 表单返回一个 TypeError
在里面<Formik>,我将 Field 渲染如下:
<Field name="type" id="type" as={MultiSelectComponent} options={Types} placeholder="Select Type" />
这是我的MultiSelectComponent:
export const MultiSelectComponent = (props) => {
return (<Select
isMulti
className="basic-multi-select"
classNamePrefix="select"
{...props}
/>)
};
该props参数只给我这些道具,但没有form或field道具。
每当我单击一个选项时,我都会收到此错误:
TypeError: Cannot read property 'type' of undefined
