我试图在我的项目中使用 react-native-fetch-blob,但每当我放一个
import RNFetchBlob from 'react-native-fetch-blob'
我在模拟器上收到错误
Cannot read property 'Document Dir' of undefined
我已经安装了它
npm i --save react-native-fetch-blob
并链接它
react-native link
错误:
无法读取未定义的属性"文档目录" fs.js:24:31 加载模块实现 require.js:214:4 受保护的加载模块 要求.js:148:11 _需要 要求.js:132:2 索引.js:21 加载模块实现 require.js:214:4 受保护的加载模块 要求.js:148:11 _需要 要求.js:132:2 应用.js:6 加载模块实现 要求.js:214:4
安装并链接软件包后。执行以下操作
watchman watch-del-all
npm cache clean --force
rm -f /ios/build
(如果您正在为 iOS 构建(rm -f /android/build
(如果您正在为Android构建(
react-native run-ios `or` react-native run-ios
希望它能解决您的问题