我正在尝试在我的react项目中使用output {
amazon_es {
hosts => ["vpc-xxx-es-yyy.us-east-1.es.amazonaws.com"]
region => "us-east-1"
aws_access_key_id => '<KEY>'
aws_secret_access_key => '<SECRETKEY>'
index => "indexnamestatic"
}
}
库。
(https://www.npmjs.com/package/react-dropdown-input)
我使用react-dropdown-input
并安装了它。
但是当我运行项目时,出现以下错误:
./〜/ react-dropdown-input / index.js中的错误
找不到模块:错误:
无法解析“ path \ node_modules \ react-dropdown”中的“ react / addons” -input'
这也是
./~/react-dropdown-input/index.js中的错误
找不到模块:错误:
无法解析“ path \ node_modules \ react-dropdown-input”中的“ react / lib / joinClasses”
我还尝试运行以下命令:npm i react-dropdown-input
,但该库不存在。
这是我的导入行:
npm install @types/react-dropdown-input
在我的代码中也这样说:
import DropdownInput from "react-dropdown-input";
有人知道为什么会发生这种情况以及如何解决吗?
答案 0 :(得分:1)
在npm@6.4.1,node@10.13.0上测试。它失败了。
我尝试克隆它。看起来好像没有维护的库。它的上一次提交大约是在5年前。 您可以查看React Autosuggest。它提供了您正在寻找的确切功能。
希望这会有所帮助。