首页 > 解决方案 > 如何在不删除自动完成中的选择的情况下禁用 Material-UI 中的下划线?

问题描述

我想AutocompleteTextField没有下划线的组件创建。InputProps={{ disableUnderline: true }}我在道具中禁用了下划线TextField,它完成了它的工作,但它也删除了选择栏,所以问题是,如何在不删除选择栏的情况下完成此操作?

标签: javascriptcssreactjsmaterial-uiunderline

解决方案


要再次启用下拉列表,您还需要在嵌套属性中传播所有提供的道具 ( InputProps)。所以替换这一行

<TextField {...params} InputProps={{ disableUnderline: true }} />

和:

<TextField {...params} InputProps={{ ...params.InputProps, disableUnderline: true }} />

完整的工作代码:

<Autocomplete
  options={top100Films}
  getOptionLabel={(option) => option.title}
  style={{ width: 300 }}
  renderInput={(params) => (
    <TextField
      {...params}
      InputProps={{ ...params.InputProps, disableUnderline: true }}
      label="Combo box"
    />
  )}
/>

现场演示

编辑 67142906/how-can-i-disable-underline-in-material-ui-without-removing-the-selection-in-aut


推荐阅读