0

我使用“react-native init”启动了一个 react-native 项目,并且创建时没有错误,但是,当我在项目目录中使用命令“react-native run-android”时,这就是我得到的:

        throw er
        ^

Error: EIO: i/o error, read
    at Object.fs.readSync (fs.js:675:18)
    at Object.readSync (D:\myProjects\react-native\ReactTodoApp\node_modules\graceful-fs\polyfills.js:138:28)
    at tryReadSync (fs.js:540:20)
    at Object.fs.readFileSync (fs.js:575:19)
    at Object.Module._extensions..js (module.js:645:20)
    at Module.load (module.js:554:32)
    at tryModuleLoad (module.js:497:12)
    at Function.Module._load (module.js:489:3)
    at Module.require (module.js:579:17)
    at require (internal/module.js:11:18).

尽管 android 模拟器正在运行或连接了 android 设备,但仍然出现相同的错误。

我需要知道解决这个问题的方法是什么。我正在使用 react-native 0.50.3,react-native-cli 2.0.1。

4

1 回答 1

0

似乎是与节点相关的错误。尝试重新启动节点服务器。Node 无法读取 polyfills.js。如果多个命令实例同时在同一目录中运行,则可能会发生这种情况。

  • 有时清理缓存有效
  • 建议修复更新或重新安装 react native。您可以卸载 react-native 然后使用以下命令: npm install react@reactversion --save. 注意 (reactversion) 是您想要拥有的所需版本。您也可以尝试将其重新安装为: npm install react --save 或升级: npm update react-native
于 2017-11-11T06:43:28.913 回答