我在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
。
我的推理正确吗?我误解了什么?
1条答案
按热度按时间332nm8kg1#
可能会发生这种情况,因为有时候你的软件包没有完全安装好。所以你可以尝试安装rn-fetch-blob,或者再次正确安装redux-persist-filesystem-storage,因为在新版本中他们已经用react-native-blob-util替换了rn-fetch-blob。