我使用yup来验证react中的输入,我在应用程序中使用的语言是法语,所以我需要用法语进行验证,我使用
npm i -s yup-locales
但是我现在如何将它与应用程序联系起来呢?
flvlnr441#
然后必须导入法语
import fr from 'yup-locales/fr';
然后用法语初始化本地模式
const schema = Yup.object().shape({ email: Yup.string().email().required(), }); schema.locale(fr);
1条答案
按热度按时间flvlnr441#
然后必须导入法语
然后用法语初始化本地模式