Formik / Yup不工作(无法解析模块)



你好,伙计们,所以我试图在我的代码中使用formik/yup,但即使在我安装它之后,它也不起作用,它说无法从D: programming .....解析模块在项目中或这些目录中找不到:

也许我安装错了?你们能告诉我一个更好的安装NPM的方法吗?

import React from 'react';
import { StyleSheet, Text, View, } from 'react-native';
import * as Yup from 'yup';
import {Formik} from 'formik';
const uploadPostSchema =Yup.object({
imageUrl:Yup.string().url.required('Url is required'),
caption:Yup.string().max(2200,'Caption has reached the max character')
})

const PostAdding =()=>{
return(
<Text style={{color:'white'}}>YOOO</Text>
)
}
export default PostAdding;

有类似的问题,必须安装旧版本的Yup

npm uninstall yup

npm I yup@0.28.5

相关内容

  • 没有找到相关文章

最新更新