是的验证将空字符串转换为默认值
Yup validation convert empty string to default value
在我的 Yup 模式中,我是我的字符串字段 name
允许您传入任何字符串、空字符串或什么都不传入。如果你传入一个字符串,它就会通过。如果你传入一个空字符串或者什么都没有,我想转换成一个默认值。
这是我认为会涵盖它的模式:
const mySchema = yup.object().shape({
name: yup.string('Name must be a string').max(100, 'Name has a max of 100 characters').default('John Doe')
});
但是,如果我传入一个空字符串 ''
,它不会触发默认转换,它只是作为一个空字符串传递。我试过添加 required()
但如果我传递一个空字符串,那只会使该行失败。我试过 nullable()
和 trim()
但似乎没有任何效果。
如何让默认值替换空字符串?
我最后添加了一个简单的方法来将空字符串转换为未定义的,这将在默认情况下被拾取:
// Add method
yup.addMethod(yup.string, 'stripEmptyString', function () {
return this.transform((value) => (value === '' ? undefined : value));
});
// Usage
const mySchema = yup.object().shape({
name: yup.string('Name must be a string').stripEmptyString().default('John Doe')
});
在我的 Yup 模式中,我是我的字符串字段 name
允许您传入任何字符串、空字符串或什么都不传入。如果你传入一个字符串,它就会通过。如果你传入一个空字符串或者什么都没有,我想转换成一个默认值。
这是我认为会涵盖它的模式:
const mySchema = yup.object().shape({
name: yup.string('Name must be a string').max(100, 'Name has a max of 100 characters').default('John Doe')
});
但是,如果我传入一个空字符串 ''
,它不会触发默认转换,它只是作为一个空字符串传递。我试过添加 required()
但如果我传递一个空字符串,那只会使该行失败。我试过 nullable()
和 trim()
但似乎没有任何效果。
如何让默认值替换空字符串?
我最后添加了一个简单的方法来将空字符串转换为未定义的,这将在默认情况下被拾取:
// Add method
yup.addMethod(yup.string, 'stripEmptyString', function () {
return this.transform((value) => (value === '' ? undefined : value));
});
// Usage
const mySchema = yup.object().shape({
name: yup.string('Name must be a string').stripEmptyString().default('John Doe')
});