我正在使用 material-uiTextField
为带有downshift的 typeahead 选择器类型组件创建输入和标签。
我看过演示,并且得到了这个:
<FormControl fullWidth className={classname}>
<TextField fullWidth InputProps={ inputProps } InputLabelProps={ inputLabelProps } />
</FormControl>
我的 inputProps 等于:
const inputProps = getInputProps({ //passed in by {...downshiftProps} on the parent
onChange, onKeyDown, disabled, error, label, value: inputValue,
startAdornment: selectedItems.map(item => ...)
});
const inputLabelProps = getLabelProps({ //passed in by {...downshiftProps} on the parent
disabled, required, error, disabled, shrink: true, id: inputProps.id
});
我的前任在 material-uiInputLabel
组件上定义了那些 inputLabelProps 属性,但为了使 aria-labelledby 属性正常工作,我使用了一个TextField
.
打印出 input 和 label 道具的内容给出:
//labelProps
{
disabled: false,
error: false,
htmlFor: "downshift-0-input",
id: "downshift-0-label",
required: undefined,
shrink: false
}
//inputProps
{
aria-activedecendant: null,
aria-autocomplete: "list"
aria-controls: null,
aria-labelledby: "downshift-0-label",
autoComplete: "off"
disabled: false,
error: false,
id: "downshift-0-input",
onBlur: f(event),
onChange: f(event),
onKeyDown: f(event),
startAdornment: [],
value: ""
}
我的问题是没有标签呈现给 DOM。我得到的最接近的是一个带有标签属性的 div,它包装了输入,但什么也不显示。
ps 我见过带有标签的 Material-ui 文本字段,但我认为 FloatingLAbelText 不再存在?答案中的链接已过时,并且与 propGetters 模式不兼容。