0

我正在使用 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 模式不兼容。

4

1 回答 1

1

这是评论中提到的演示的略微简化版本:

编辑材质演示

演示部分使用DownshiftMultiple了标签。我只在我的沙箱中包含了第一个降档演示,但对其进行了修改,以与“多个”演示相同的方式使用标签。标签不属于 InputLabelProps,它只是TextField. 在演示中,这有点令人困惑,因为label它被指定为传递给的对象的属性,renderInput所以它最终只是作为...other传播到的对象的一部分TextField

如果您查看相关代码,TextField您会看到:

    {label && (
      <InputLabel htmlFor={id} ref={this.labelRef} {...InputLabelProps}>
        {label}
      </InputLabel>
    )}

在这里您看到InputLabelProps不影响标签的内容,只是影响其呈现的其他属性,因此您需要label直接作为属性在TextField.

于 2019-02-08T16:48:59.420 回答