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

来源:互联网 发布:开通淘宝店铺流程 编辑:程序博客网 时间:2024/05/29 08:05

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.”

第一种可能性:
解决方案:删除node_modules文件夹,重新加载。

npm install

第二种可能性:
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。因为这可能发生一些未知的错误。

阅读全文
0 2
原创粉丝点击