我是react
的新手,尝试使用react-bootstrap
时遇到此问题。
我已经安装了react-bootstrap
,reactstrap
和react-bootstrap-select
,问题是当我尝试从react-bootstrap
导入内容时出现此错误:
./ node_modules / react-bootstrap / es / DropdownMenu.js找不到模块: 无法解析'@ babel / runtime / core-js / array / from' 'C:\ webprojects \ react \ mytest-app \ node_modules \ react-bootstrap \ es'
我删除了调用此脚本的行,并且遇到了另一个类似的错误,但这提到了另一个脚本。
我搜索了许多放置在网络上并安装babel-runtime
的计算机,并尝试了npm install
,但似乎没有任何效果。如果我转到提到的文件夹,我会找到这些脚本。我真的不知道该怎么办或这里的确切问题是什么。
任何帮助将不胜感激。
答案 0 :(得分:2)
这似乎是您遇到的一个最近引入的错误,使当前的0.32.2版本的react-bootstrap与使用的babel版本不兼容:
https://github.com/react-bootstrap/react-bootstrap/issues/3231
我们暂时将package.json中的react-bootstrap版本固定为0.32.1,作为解决方法。