模块导入对我不起作用。我尝试了堆栈溢出和其他提供的不同解决方案。这些是我遵循react-select的步骤
npm install --save @types/react-select
按如下方式导入模块
import Select from "react-select"
但我得到了错误
找不到模块:错误:无法解析'react-select'
import * as React from "react";
import ReactSelect from 'react-select'
export class Select extends extends React.Component<someProps>{
render(){
return(
<Select id="color" options={options} />
);
}
}
但我找不到解决这个问题的方法。
4条答案
按热度按时间cpjpxq1n1#
我在
npm i react-select
之前得到了解决方案。4c8rllxm2#
您有一个错误:
代替
此外,我建议使用
--save-dev
而不是--save
,因为在生产中不需要键入。9udxz4iz3#
我在这里发现了问题。问题是
@types/react-select
和react-select
都添加到package.json
kpbpu0084#
我的错误有点不同,因为它涉及react-select-async-paginate。
所以在我的例子中,我不得不使用,
或
希望这对某人有帮助:)