React Native常见问题解决

来源:互联网 发布:php 取数组最大值 编辑:程序博客网 时间:2024/05/22 13:48

记录学习React Native过程中遇到的坑。

1. 服务端返回500

这里写图片描述

解决方案

方案1:使用 yarn 工具

$ yarn remove babel-preset-react-native
$ yarn add babel-preset-react-native@2.1.0

方案2:使用 npm 工具

$ npm uninstall --save-dev babel-preset-react-native
$ npm install babel-preset-react-native@2.1.0

参考:Bundling ‘index.android.js’ [development, non-minified, hmr disabled] 0.0%(0/1), failed #15575

原创粉丝点击