有没有办法让material-ui Autocomplete react组件不区分大小写?例如,如果我有一个列表项“电影”,我希望能够搜索“电影”,“电影”,“电影”等,并让它出现,无论什么字母是大写的搜索。
dtcbnfnu1#
这样就可以了。ignoreCase默认为true。所有内容都小写。
import { createFilterOptions } from '@material-ui/lab/Autocomplete'; const filterOptions = createFilterOptions({ ignoreCase: true, }); <Autocomplete filterOptions={filterOptions} />
有关详细信息,请查看自定义筛选器。
y0u0uwnf2#
解决方案来自之前的答案,但您应忽略Case:假的
const filterOptions = createFilterOptions({ ignoreCase: false, });
2条答案
按热度按时间dtcbnfnu1#
这样就可以了。ignoreCase默认为true。所有内容都小写。
有关详细信息,请查看自定义筛选器。
y0u0uwnf2#
解决方案来自之前的答案,但您应忽略Case:假的