4

我创建了一些registrationSchema

 export const registrationSchema = (translate) => Yup.object().shape({
  //... other properties that are validated.
  //       for example username
    username: Yup.string()
    .min(6, translate('validation:common.username.min', { min: 6 }))
    .max(20, translate('validation:common.username.max', { max: 20 }))
    .required(translate('validation:common.username.required')),
     DOB: Yup.lazy(value => {
        console.log('yup', value);
        if (moment().diff(moment(value), 'years') < 18)
          // Here return DOB error somehow
      })
    ...

到目前为止,它就像一个魅力。但现在我需要验证用户是否至少 18 岁。我从日期选择器获取 DateOfBirth,我可以检查它是否小于 18 岁。

if(moment().diff(moment(date),'years) < 18)

以及我在使用 Yup.lazy 时得到的这个日期值,但是如果 18 岁以下要在 DOB 字段下显示它,不知道如何抛出验证错误。我什至不知道我是否使用正确的yup方法。我想使用 yup.date()。但是如何在模式中获取选择的日期以检查它是否是有效的年龄。

4

2 回答 2

16

你可以Yup.string这样使用:

Yup.string().test(
  "DOB",
  "error message",
  value => {
    return moment().diff(moment(value),'years') >= 18;
  }
)

如果测试函数返回true,则字段通过测试。否则设置错误。

于 2019-02-26T15:31:36.253 回答
0

Yup.string()
.required("DOB is Required")
.test(
  "DOB",
  "Please choose a valid date of birth",
  (date) => moment().diff(moment(date), "years") >= 18
)

于 2021-10-03T08:35:41.910 回答