在react-select中输入一个字符后,我可以使下拉菜单可见吗?
Can I make the dropdown visible after entering one character in react-select?
我正在使用 react-select React 组件来显示自动完成输入字段。
在关注 react-select 组件输入字段时,它将显示所有可用的 选项 ,由于数据集的长度,我不想要这些以千计。我只想在用户至少输入一个字符时显示选项。有什么办法吗?或者这是我应该提出的功能请求吗?
提前致谢。
是的,将 openOnClick={false}
道具添加到 Select。
open the options menu when the control is clicked (requires searchable = true)
我正在使用 react-select React 组件来显示自动完成输入字段。
在关注 react-select 组件输入字段时,它将显示所有可用的 选项 ,由于数据集的长度,我不想要这些以千计。我只想在用户至少输入一个字符时显示选项。有什么办法吗?或者这是我应该提出的功能请求吗?
提前致谢。
是的,将 openOnClick={false}
道具添加到 Select。
open the options menu when the control is clicked (requires searchable = true)