javascript 使用Yup进行Datepicker验证

8fsztsew  于 12个月前  发布在  Java
关注(0)|答案(1)|浏览(80)

我已经使用formik创建了一个日期选择器,我必须使用Yup进行验证。

**例如:**如果我的年龄是18,通过与当前日期进行比较,如果我从date pickermore than 18中选择一个日期,则它应该给予我一条消息,我的年龄是less than 18

nwsw7zdq

nwsw7zdq1#

const YourSettingSchema = Yup.object().shape({
  dateOfBirth: Yup.string()
    .nullable()
    .test('Date of Birth', 'Should be greather than 18', function(value) {
      return moment().diff(moment(value), 'years') >= 18;
    }),
});

字符串

相关问题