开发者问题收集

发生了 React Native 意外错误

2022-06-16
1088

首次使用 React Native。当我运行 npm start 并打开 localhost 时,系统提示“发生了意外错误”。如果我扫描 Expo 应用中的二维码,系统提示“出现问题。网络响应超时”。

当我打开控制台时,系统显示

在此处输入图片描述

我创建的应用为:

npm install -g expo-cli
expo init MyApp
Selected the typescript template
And then at the MyApp folder npm start
1个回答

可能是因为 [email protected] 有新版本

卸载新版本并安装 5.4.7

对于 npm:

npm -g uninstall expo-cli
npm -g install [email protected]

对于 yarn:

yarn global remove expo-cli
yarn global add [email protected]
Abhishek
2022-06-16