admin管理员组文章数量:1341856
currently working with Material UI autoplete ponent. it is only filtering on the "getOptionLabel" option field when I type something on the input field. however, I want the autoplete to filter on more than one field. as per doc, I can use CreateFilterOptions to add one more field or use match-sorter to make it work.
const filterOptions = createFilterOptions({
matchFrom: 'start',
stringify: option => option.title,
});
<Autoplete filterOptions={filterOptions} />
at stringify, I am wondering if I could return the whole object instead of just an option.title
please correct me if I am doing something wrong.
currently working with Material UI autoplete ponent. it is only filtering on the "getOptionLabel" option field when I type something on the input field. however, I want the autoplete to filter on more than one field. as per doc, I can use CreateFilterOptions to add one more field or use match-sorter to make it work.
https://material-ui./ponents/autoplete/#createfilteroptions-config-filteroptions
const filterOptions = createFilterOptions({
matchFrom: 'start',
stringify: option => option.title,
});
<Autoplete filterOptions={filterOptions} />
at stringify, I am wondering if I could return the whole object instead of just an option.title
please correct me if I am doing something wrong.
Share edited 23 hours ago Olivier Tassinari 8,6916 gold badges25 silver badges28 bronze badges asked Apr 17, 2020 at 15:53 dev0864dev0864 5352 gold badges7 silver badges18 bronze badges1 Answer
Reset to default 10First, multi-additional-filter
seems currently not supported by createFilterOptions
.
- source of Material-UI Autoplete createFilterOptions
const filteredOptions = options.filter(option => {
let candidate = (stringify || getOptionLabel)(option);
if (ignoreCase) {
candidate = candidate.toLowerCase();
}
if (ignoreAccents) {
candidate = stripDiacritics(candidate);
}
return matchFrom === "start"
? candidate.indexOf(input) === 0
: candidate.indexOf(input) > -1;
});
We can see it actually filter the options via attributes, which is coded as only accepting one to pare.
Solution
As a workaround, if we don't need matchFrom: 'start'
, we can simply go through it via bind the two string. Notice it does have potential bugs.
const filterOptions = createFilterOptions({
// matchFrom: 'start',
stringify: (option) => option.title + option.text, // make it one for it
});
Try it online: https://stackblitz./edit/gwmqss
We can also write our own createFilterOptions
function for Autoplete props getOptionLabel
which can support multi-additional-filter
with those props like matchFrom: 'start'
.
- document of MUI Autoplete props API
If you think it's a valuable feature, you can start an issue, too.
- new issue for MUI feature
本文标签: javascriptMaterial UI Autocomplete only filtering with getOptionLabel fieldStack Overflow
版权声明:本文标题:javascript - Material UI Autocomplete only filtering with getOptionLabel field - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743686321a2521954.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论