在formik表单提交后清除react-select值,可以通过以下步骤实现:
import { Formik, Form, Field } from 'formik';
import Select from 'react-select';
<Formik
initialValues={{ selectValue: null }}
onSubmit={(values, { resetForm }) => {
// 处理表单提交逻辑
// 清除react-select的值
resetForm();
}}
>
<Form>
<Field
name="selectValue"
component={Select}
options={options}
isClearable={true}
/>
<button type="submit">提交</button>
</Form>
</Formik>
这样,在formik表单提交后,react-select的值将被清除,使用户可以重新选择新的值。
推荐的腾讯云相关产品:腾讯云云服务器(ECS),产品介绍链接地址:https://cloud.tencent.com/product/cvm
领取专属 10元无门槛券
手把手带您无忧上云