我创建了一些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()。但是如何在模式中获取选择的日期以检查它是否是有效的年龄。