0

我只是想链接 react-native-fetch-blob 库,但它给出了错误

react-native link react-native-fetch-blob

并且错误显示

Scanning folders for symlinks in ...\node_modules (48ms)
rnpm-install ERR! ERRPACKAGEJSON No package found. Are you sure this is a React Native project?

Cannot read property '_text' of undefined

我已经安装了库,npm install react-native-fetch-blob --save但在链接时显示错误。

不仅对于fetch-blob,链接不适用于任何库。

4

1 回答 1

0

在运行之前确保您位于 React Native 项目的根目录react-native link react-native-fetch-blob

我的猜测是您当前可能在iosorandroid文件夹中,因此请跳回一个目录级别。

如果你 npm 在当前目录中安装了任何包,你需要删除它们,然后从项目的根目录再次安装它们,以确保它们安装在正确的位置。

于 2018-01-30T23:12:04.340 回答