gpt4 book ai didi

reactjs - material-ui 自动完成接受自定义值

转载 作者:行者123 更新时间:2023-12-05 06:17:00 26 4
gpt4 key购买 nike

我有这个自动完成下拉框。

如果我选择的值不是下拉列表中的值,我如何接受自动完成下拉框以接受自定义值。在此示例中,bar 和 bat 值位于下拉列表中。

我如何接受包作为输入值?

我的代码在:https://codesandbox.io/s/material-demo-8scos

export default function ComboBox() {
return (
<Autocomplete
id="combo-box-demo"
options={top100Films}
getOptionLabel={option => option.title}
style={{ width: 300 }}
renderInput={params => (
<TextField {...params} label="Combo box" variant="outlined" />
)}
/>
);
}

const top100Films = [
{ title: "bar", year: 1994 },
{ title: "bat", year: 1972 }
];

https://codesandbox.io/s/material-demo-ytrt4

最佳答案

https://mui.com/material-ui/react-autocomplete/

只需在自动完成后添加 freeSolo

关于reactjs - material-ui 自动完成接受自定义值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61850766/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com