当加载为 true 时,Mui 自动完成不显示加载微调器

vuv*_*uvu 5 reactjs material-ui

MuiAutocomplete不显示加载微调器,尽管加载设置为true。它有加载状态吗?

编辑 https://codesandbox.io/s/material-demo-forked-109rj

<Autocomplete
  loading
  id="combo-box-demo"
  options={top100Films}
  getOptionLabel={(option) => option.title}
  style={{ width: 300 }}
  renderInput={(params) => <TextField {...params} label="Combo box" variant="outlined" />}
/>
Run Code Online (Sandbox Code Playgroud)

Nea*_*arl 6

它按预期工作。loadingtrue 并且 中没有过滤选项时才会呈现加载组件Autocomplete

编辑 66803107/mui-autocomplete-does-not-show-loading-spinner