我已经实现了这样的React-Select
{hints && hints.length ? (
<Select
value={pattern}
isClearable={true}
autoFocus={true}
onChange={selectValue => {
fetchImages(selectValue);
}}
options={hints}
/>
) : null}
那是React功能组件的返回块内部。只要没有提示/选项,“选择”就会被隐藏。但是,当它获得选项时,只有带有光标的一行。是否有一个选项可以强制其自动显示选项列表?
答案 0 :(得分:0)
就这么简单:
menuIsOpen ={true}
抱歉打扰