避免在AutoComplete组件上使用鼠标点击事件,让建议选项根据用户输入自动弹出。
代码示例:
AutoComplete组件: ( )} inputValue={inputValue} onInputChange={(event, newInputValue) => { setInputValue(newInputValue); }} />
useState钩子: const [inputValue, setInputValue] = useState('');
上一篇:AutoComplete在将值设置为它修改的useState时会显示红色警告。
下一篇:Autocomplete组合框只会在表格的第一行显示数据(我正在使用Codeigniter和JqueryUI)