我在一个可能多次出现在页面中的组件中有一个重要的用户界面反应选择。
在examples中,所有带有标签的选择都使用InputLabel和htmlFor,它必须是选择的ID。
我无法提供选择ID,因为ID必须是页面的唯一ID,并且这是一个不需要知道页面上所有ID的组件(我也不希望在代码中的任何地方知道所有ID)该ID在页面中。)
根据InputLabel documentation,它甚至没有文档化的htmlFor属性。
是否可以在不提供ID的情况下为MUI选择添加标签?
答案 0 :(得分:1)
只要您在嵌套解决方案中不会遇到任何样式困难,那就完全可以了,但这是一个使用生成的ID的示例,该示例将使您避免将Select嵌套在InputLabel中:
import React from "react";
import { makeStyles } from "@material-ui/core/styles";
import InputLabel from "@material-ui/core/InputLabel";
import MenuItem from "@material-ui/core/MenuItem";
import FormControl from "@material-ui/core/FormControl";
import Select from "@material-ui/core/Select";
let nextIdSuffix = 1;
const useStyles = makeStyles(theme => ({
root: {
display: "flex",
flexWrap: "wrap"
},
formControl: {
margin: theme.spacing(1),
minWidth: 120
},
selectEmpty: {
marginTop: theme.spacing(2)
}
}));
const CustomSelect = () => {
const idRef = React.useRef();
const classes = useStyles();
const [value, setValue] = React.useState("");
if (!idRef.current) {
idRef.current = `CustomSelect${nextIdSuffix}`;
nextIdSuffix++;
}
return (
<FormControl className={classes.formControl}>
<InputLabel htmlFor={idRef.current}>Age</InputLabel>
<Select
value={value}
onChange={e => setValue(e.target.value)}
inputProps={{
name: idRef.current,
id: idRef.current
}}
>
<MenuItem value={10}>Ten</MenuItem>
<MenuItem value={20}>Twenty</MenuItem>
<MenuItem value={30}>Thirty</MenuItem>
</Select>
</FormControl>
);
};
export default CustomSelect;
答案 1 :(得分:0)
与html label tag相同;我在InputLabel中嵌套了Select:
<InputLabel className="paging">
Page:
<Select
value={current}
onChange={e => changePage(e.target.value)}
inputProps={{
name: 'page',
id: 'page',
}}
>
{options.map(option => (
<MenuItem key={option} value={option}>
{option}
</MenuItem>
))}
</Select>
</InputLabel>