使用 Yup 验证不需要的表单字段?
Validating not required form fields with Yup?
我想用 Yup 验证不需要的表单字段
const validationSchema = Yup.object().shape({
firstname: Yup.string().required("First name is required").matches(/[A-Za-z]/,"Should contain only alphabets").min(3,'Should contain atleast ${min} alphabets`).max(20,`Should not exceed ${max} alphabets'),
lastname: Yup.string().nullable().notRequired()
})
lastname: Yup.string.nullable().notRequired()
。我不知道如何进一步进行,因为如果给出输入,我有多个条件来验证该字段。
我的验证条件是:
- 应该只包含字母。
- 至少应包含 2 个字母,最多 20 个字母。
您应该使用与 firstname
已有的类似 match
模式。一种可能的做法是这样的:
const obj = {
firstname: 'my name',
lastname: 'asd'
};
const yupObj = yup.object().shape({
firstname: yup.string().required("First name is required").matches(/[A-Za-z]/,"Should contain only alphabets").min(3,'Should contain atleast 3 alphabets').max(20,`Should not exceed 20 alphabets`),
lastname: yup.string().nullable().notRequired().matches(/[a-zA-Z]{2,20}/, 'should have alphabets between 2 and 20')
})
yupObj
.validate(obj)
.then(function(value) {
console.log(value);
})
.catch(function(err) {
console.log(err);
});
我想用 Yup 验证不需要的表单字段
const validationSchema = Yup.object().shape({
firstname: Yup.string().required("First name is required").matches(/[A-Za-z]/,"Should contain only alphabets").min(3,'Should contain atleast ${min} alphabets`).max(20,`Should not exceed ${max} alphabets'),
lastname: Yup.string().nullable().notRequired()
})
lastname: Yup.string.nullable().notRequired()
。我不知道如何进一步进行,因为如果给出输入,我有多个条件来验证该字段。
我的验证条件是:
- 应该只包含字母。
- 至少应包含 2 个字母,最多 20 个字母。
您应该使用与 firstname
已有的类似 match
模式。一种可能的做法是这样的:
const obj = {
firstname: 'my name',
lastname: 'asd'
};
const yupObj = yup.object().shape({
firstname: yup.string().required("First name is required").matches(/[A-Za-z]/,"Should contain only alphabets").min(3,'Should contain atleast 3 alphabets').max(20,`Should not exceed 20 alphabets`),
lastname: yup.string().nullable().notRequired().matches(/[a-zA-Z]{2,20}/, 'should have alphabets between 2 and 20')
})
yupObj
.validate(obj)
.then(function(value) {
console.log(value);
})
.catch(function(err) {
console.log(err);
});