是的模式验证 - 元组和替代对象
yup schema validation - tuples and alternative objects
在 yup 的文档中,我找不到任何用于验证元组数组和替代对象的内容。如何在 yup 中验证这样的对象?
interface Example {
tuple: string[]; // always two elements
alt: { foo: string; } | { bar: string; }
}
对于替代 objects/types 你可以使用 yup.lazy():
yup.lazy((alt: { foo: string; } | { bar: string; }) => {
if (alt.foo) return yup.object<{ foo: string; }>();
if (alt.bar) return yup.object<{ bar: string; }>();
})
对于元组,这个答案是我能找到的最好的帮助,但它在打字稿中不起作用:https://github.com/jquense/yup/issues/528#issuecomment-496353532
在 yup 的文档中,我找不到任何用于验证元组数组和替代对象的内容。如何在 yup 中验证这样的对象?
interface Example {
tuple: string[]; // always two elements
alt: { foo: string; } | { bar: string; }
}
对于替代 objects/types 你可以使用 yup.lazy():
yup.lazy((alt: { foo: string; } | { bar: string; }) => {
if (alt.foo) return yup.object<{ foo: string; }>();
if (alt.bar) return yup.object<{ bar: string; }>();
})
对于元组,这个答案是我能找到的最好的帮助,但它在打字稿中不起作用:https://github.com/jquense/yup/issues/528#issuecomment-496353532