Material UI AutoComplete 组件上的即时搜索

huangapple go评论94阅读模式
英文:

Instant Search on Material UI AutoComplete Component

问题

被迫在使用AutoComplete Material UI组件提交表单时按两次回车。我希望只需选择一次选项就能导航到另一个网页。

提交处理程序

组件代码

我尝试过更改提交处理程序和纸张/框组件,但问题仍然存在。一旦我从AutoComplete的下拉菜单中选择一个选项,用户必须再次按回车。

英文:

Forced to press enter twice on form submission with AutoComplete Material UI component. I want to be able to only select the options once to navigate to another web page.

Submission Handler

Component Code

I attempted to change around the submission handler and the paper/box components, but the problem persists. Once I select an option from the dropdown menu from AutoComplete the user has to hit enter again.

答案1

得分: 1

你在AutoComplete组件上实现了即时搜索,使用了useEffect ReactJS

  1. import React, { useState, useEffect } from 'react';
  2. import { Autocomplete } from '@material-ui/lab';
  3. import { TextField } from '@material-ui/core';
  4. function searchAutocomplete({ option, onSelection }) {
  5. const [searchTermValue, setSearchTermValue] = useState('');
  6. const [filteredOptionValue, setFilteredOptionValues] = useState([]);
  7. useEffect(() => {
  8. setFilteredOptionValues(option.filter((option) =>
  9. option.label.toLowerCase().includes(searchTermValue.toLowerCase())
  10. ));
  11. }, [searchTermValue, option]);
  12. return (
  13. <Autocomplete
  14. option={filteredOptionValue}
  15. getOptionLabel={(option) => option.label}
  16. renderInput={(param) => (
  17. <TextField
  18. {...param}
  19. label="Search"
  20. variant="outlined"
  21. onChange={(event) => setSearchTermValue(event.target.value)}
  22. />
  23. )}
  24. onChange={onSelection}
  25. />
  26. );
  27. }

希望这段代码对你有帮助。

英文:

You implement instant search on the AutoComplete component, using useEffect ReactJS.

  1. import React, { useState, useEffect } from &#39;react&#39;;
  2. import { Autocomplete } from &#39;@material-ui/lab&#39;;
  3. import { TextField } from &#39;@material-ui/core&#39;;
  4. function searchAutocomplete({ option, onSelection }) {
  5. const [searchTermValue, setSearchTermValue] = useState(&#39;&#39;);
  6. const [filteredOptionValue, setFilteredOptionValues] = useState([]);
  7. useEffect(() =&gt; {
  8. setFilteredOptionValues(option.filter((option) =&gt;
  9. option.label.toLowerCase().includes(searchTermValue.toLowerCase())
  10. ));
  11. }, [searchTermValue, option]);
  12. return (
  13. &lt;Autocomplete
  14. option={filteredOptionValue}
  15. getOptionLabel={(option) =&gt; option.label}
  16. renderInput={(param) =&gt; (
  17. &lt;TextField
  18. {...param}
  19. label=&quot;Search&quot;
  20. variant=&quot;outlined&quot;
  21. onChange={(event) =&gt; setSearchTermValue(event.target.value)}
  22. /&gt;
  23. )}
  24. onChange={onSelection}
  25. /&gt;
  26. );
  27. }

Hope this code is useful for you.

huangapple
  • 本文由 发表于 2023年2月19日 15:18:02
  • 转载请务必保留本文链接:https://go.coder-hub.com/75498565.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定