无法在我的项目上运行反应本机链接

Zha*_* Yi 5 react-native

当我在 RN 项目上运行时react-native link,出现以下错误:

$ react-native link
rnpm-install ERR! ERRPACKAGEJSON No package found. Are you sure it's a React Native project?

Cannot read property '_text' of undefined
Run Code Online (Sandbox Code Playgroud)

我查了一下,有人说运行react-native upgrade可以解决这个问题。我试过了,但是没有锁。我的react版本如下所示:

$ react-native --version
react-native-cli: 2.0.1
react-native: 0.39.2
Run Code Online (Sandbox Code Playgroud)

我该如何解决这个问题?

Wit*_*ult 4

按顺序执行以下步骤 -

  1. npm cache clean或者yarn cache clean
  2. rm -rf node_modules
  3. yarn install或者npm install
  4. react-native upgrade(所有步骤都可以选择否)
  5. react-native link

如果您收到与权限相关的错误,请使用sudo所有命令。