我正在进行国家/地区搜索。react-select我正在使用反应SortableSelect(几乎类似于选择)。当我单击框直到字母数超过 2 时,我想在选择框下方显示“继续输入”框。
通过我输入的字母,它应该显示适当的国家选项,就像搜索国家一样。
<SortableSelect
onSortEnd={onSortEnd}
distance={4}
isMulti
options={countryOptions}
value={destinations}
onChange={handleChipDestinations}
components={{
MultiValue: SortableMultiValue,
}}
closeMenuOnSelect={false}
placeholder="Search Country"
/>