在 MUI 的自动完成中使用 tabIndex 时出错

Error when use tabIndex in Autocomplete of MUI

我想在使用 inputProps={{ tabIndex: tabIndex ?? -1 }} 的 MUI 自动完成中使用 tabIndex 但是当我使用这个 属性 ,然后单击下拉按钮页面消失时,任何人都可以帮助我什么是问题?

您还需要传播 params.inputProps 来自 Autocomplete:

<TextField
  {...params}
  inputProps={{ ...params.inputProps, tabIndex: 1 }}
  label="freeSolo"
/>