材质UI对话框中的React-Select Multi Select滞后

时间:2018-08-06 17:32:40

标签: react-select

“材质选择”对话框中的“反应选择多重选择”落后于150个以上的数据数组。 有办法解决这个问题吗?

    <Input
        fullWidth
        inputComponent={creatableSelect}
        id="autoSuggest"
        onChange={this.handleChange}
        inputProps={{
            options: suggestions
        }}
    />

function creatableSelect(props) {
    const { ...other } = props;
    return (
        <CreatableSelect
            isMulti
            components={components}
            closeMenuOnSelect={false}
            hideSelectedOptions={false}
            formatCreateLabel={formatCreate}
            className={'selectAutoSuggest'}
            isClearable={false}
            styles={customStyles}
            {...other}
        />
    );
}

0 个答案:

没有答案