实质性用户界面-自动完成集成问题

时间:2020-03-04 05:35:25

标签: reactjs autocomplete material-ui

当我尝试将自动完成功能集成到我的代码中时,我遇到了这个问题。

<Autocomplete
    name="brandId"
    options={brandList}
    getOptionLabel={option => option.name}
    renderInput={params => (
    <TextField
        {...params}
        label="Brand"
        variant="outlined"
        fullWidth
    />
    )}
/>

这是我的代码的样子。 “ brandList”是和数组对象。

错误消息:

enter image description here

0 个答案:

没有答案