我正在尝试将react-select版本从1.0.0-rc.10升级到3.1.0。我遇到以下错误
jquery.js?eedf:3869未捕获的TypeError:Object(...)不是函数
我当前的反应版本是-15.6.2
由于以下原因,我要升级react-select: 当用户键入react-select(Component)时,我会在框中看到一点延迟(我使用了Component)。框中的文字显示得很晚(300ms〜500ms)
Select的当前代码(v1.0.0):
const props = {
className: 'search-combobox',
placeholder,
onChange: this._onSelectionChange.bind(this),
onSelect: this.props.onSelectedItem,
options: this.state.immSearchOptions.toJS(),
filterOptions: this._filterOptions.bind(this),
onInputChange: this._onInputChange.bind(this),
valueKey: 'id',
};
<Select {...props}
autoFocus={true}
clearable={true}
closeOnSelect={true}
maxMenuHeight={300}
escapeClearsValue={true}
onBlurResetsInput={false} />