记录VSCode开发React Native的一些坑

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/JMC13872389621/article/details/84985428

当我们点Debug Android时,会弹出以下错误 
Could not debug. Unable to set up communication with VSCode react-native extension. Is this a react-native project, and have you made sure that the react-native npm package is installed at the root?

解决方法:当时我全局安装的react-native-cli版本为最新的2.0.0,可能是这个版本的Bug,需要回退到1.3.0或者更低版本。

npm -g uninstall react-native-cli
npm -g install [email protected]
1
2
参考:https://github.com/Microsoft/vscode-react-native/issues/365

调试时不需要勾选ALL Exceptions,否则运行起来处处thow Error(),程序会运行不起来。


出现以下红屏(Unable to connect with remote debugger):


解决方法:摇下手机,在弹出的对话框中选择“Dev Settings”,再选择“Debug server host & port for device”,输入电脑的IP地址和监听端口号(默认为8081,用英文分号隔开),例如:192.168.2.32:8081
--------------------- 

猜你喜欢

转载自blog.csdn.net/JMC13872389621/article/details/84985428
今日推荐