reactjs React Native :我删除了rn-fetch-blob,现在另一个包抛出了一个错误

hrirmatl  于 2022-12-03  发布在  React
关注(0)|答案(1)|浏览(268)

我在React Native应用中使用rn-fetch-blob。我将其替换为react-native-blob-util。我还使用redux-persist-filesystem-storage,它使用rn-fetch-blob。在卸载rn-fetch-blob后,redux-persist-filesystem-storage开始抛出错误(null is not an object (evaluating 'RNFetchBlob.DocumentDir'))。我认为删除node_modules/rn-fetch-blob不会对redux-persist-filesystem-storage产生影响,因为redux-persist-filesystem-storage使用node_modules/redux-persist-filesystem-storage/node_modules/rn-fetch-blob
我的推理正确吗?我误解了什么?

332nm8kg

332nm8kg1#

可能会发生这种情况,因为有时候你的软件包没有完全安装好。所以你可以尝试安装rn-fetch-blob,或者再次正确安装redux-persist-filesystem-storage,因为在新版本中他们已经用react-native-blob-util替换了rn-fetch-blob。

相关问题