react-native报错-Unable to resolve module ‘react’

转载 https://blog.csdn.net/mapbar_front/article/details/76165239

error: bundling failed: “Unable to resolve module react from C:\\Users\\liwd\\Desktop\\mywork\\react-native\\Navigator\\index.android.js: Module does not exist in the module map\n\nThis might be related to https://github.com/facebook/react-native/issues/4968\nTo resolve try the following:\n 

1. Clear watchman watches: watchman watch-del-all.\n 

2.Delete the node_modules folder: rm -rf node_modules && npm install.\n 

3. Reset packager cache: rm -fr $TMPDIR/react-* or npm start -- --reset-cache.”

报错原因:index.android.js 中import 引用的某个 Module 找不到了。

第一种可能性: 

解决方案:删除node_modules文件夹,重新加载。或者,打开 node_modules文件夹看一下,是不是文件放别处了,找到后,重新 import。
npm install
  • 1

第二种可能性: 
react和react-native的版本不匹配 
不同的react和react-native版本会冲突,下载指定版本的react和react-native 
可行性的做法: 
直接选择react-native init之后的react和react-native版本,然后删除node_modules,再进行npm install。

你可能会出现的问题:npm 一个新的如react-native-vector-icons之类的包的时候,最好把node_modules删除,重新npm install。因为这可能发生一些未知的错误。


猜你喜欢

转载自blog.csdn.net/qq_38719039/article/details/80046244