我使用 formik 和 yup 在我的应用程序中处理表单验证。
我有 2 个相互关联的字段,比如说字段“日期”和字段“时间”。
我想在字段“时间”中进行自定义验证,以根据字段“日期”中的值检查一天中的时间是否已经过去
例如,今天是 2021 年 2 月 26 日上午 8 点,因此用户无法选择 8 点以下的时间。
date: string().required('date required'),
time: string()
.required('time is require')
.matches(myCustomRegex)