【RN】react-native 记录

[错误1]搭建项目完成后,start报错

image.png

根据图片显示,正则错误,
解决办法:
修改项目内文件: \node_modules\metro-config\src\defaults\blacklist.js

var sharedBlacklist = [
  /node_modules[/\\]react[/\\]dist[/\\].*/,
  /website\/node_modules\/.*/,
  /heapCapture\/bundle\.js/,
  /.*\/__tests__\/.*/
];
改为

var sharedBlacklist = [
  /node_modules[\/\\]react[\/\\]dist[\/\\].*/,
  /website\/node_modules\/.*/,
  /heapCapture\/bundle\.js/,
  /.*\/__tests__\/.*/
];

[错误2]

报错图示:


image.png

原因:未安装react-redux
解决:

npm install --save react-redux

[错误3]

报错图示:

image.png

原因:未连接服务器
解决:确认自己的服务器是否启动
确认方法:
http://localhost:8081/index.android.bundle?platform=android
开启:

react-native start

npm start

你可能感兴趣的:(【RN】react-native 记录)