React Material UI 标签与文本重叠

IT技术 javascript reactjs material-ui
2021-05-11 12:59:55

我在 React 应用程序中使用 Material UI 并尝试实现实体更新页面。在这种情况下,我们需要设置实体的现有值以让用户更新它们。已使用输入字段的 defaultValue 属性设置现有值:

<div className="input-field">
   <input type="text" name="name" ref="name" defaultValue={this.state.name} />
   <label htmlFor="name" >Name</label>
</div>

使用这种方法,预期的功能可以正常工作。但是,所有文本字段的标签与其值重叠。请看下面的截图:

在此处输入图片说明

如果我单击每个字段,标签会按预期向上移动。但是,在页面加载时,标签不会向上移动。我尝试将输入字段的 value 属性与 onChange() 事件处理程序一起使用,但遇到了同样的问题。真的,感谢您对此的想法。

这个应用程序的完整源代码可以在这里找到:https : //github.com/imesh/react-examples/tree/master/meetups/meetups-web-client

可以在此处找到此特定页面:https : //github.com/imesh/react-examples/blob/master/meetups/meetups-web-client/src/components/UpdateMeetup.js

Github 问题:https : //github.com/Dogfalo/materialize/issues/5995

4个回答

这是由于值的未定义状态。

此解决方法适用于我作为后备:

value= this.state.name || '';

例如对于 Material-UI

<div className="input-field">
   <input type="text" name="name" ref="name" value={this.state.name || ''} />
   <label htmlFor="name">Name</label>
</div>

InputLabel有一个 prop shrink您可以在 TextField 中使用,如下所示:

<TextField
  // ... rest
  InputLabelProps={{ shrink: true }}  
/>

我通过使用条件解决了这个问题,如果它不是null && undefined然后分配值否则“”。这里使用Formik

<TextField
                    type="text"
                    label="Ending Month"
                    variant="outlined"
                    fullWidth
                    size="small"
                    name="endingMonth"
                    value={
                      values.endingMonth === null ||
                      values.endingMonth === undefined
                        ? ""
                        : values.endingMonth
                    }
                    helperText={touched.endingMonth && errors.endingMonth}
                    error={Boolean(touched.endingMonth && errors.endingMonth)}
                  />

我遇到过同样的问题; 但是它不一致 - 这意味着有时我的标签显示正确,有时重叠

我尝试了以下方法,效果很好。基本上,表单首先在没有数据的情况下呈现为空;然后 useEffect 正在获取数据并填充数据。我设置了一个 isLoading 状态变量 - 这将最初设置为 true 并在 API 获取数据后设置为 false。

仅在 isLoading 为 false 后才显示所有数据 - 这很有效。

代码片段

export default function UserProfile(props) {
const classes = useStyles();
const [user, setUser] = React.useState({});
const [isLoading, setIsLoading] = React.useState(true);

const getUser = async () => {
    const requestOptions = {
        method: 'GET',
        cache: 'no-cache',
        headers: { 
            'Content-Type': 'application/json',
        },
        redirect: 'follow',
        referrerPolicy: 'no-referrer',            
    };

    const response = await axios.request(
        "/api/userprofile",
        requestOptions
    );

    const responseData = await response.data;
    
    setUser( responseData.userProfile );
    setIsLoading(false);
}

React.useEffect(() =>{
    getUser();
    console.log(user);
})

return(
    <div style={{padding:"10px"}}>
        <Grid container className={classes.card}>
            <Container component="main" maxWidth="xs">
            <>{ isLoading ? <div> </div> : 
            <div className={classes.paper}>
                <Typography variant="h6">User Profile</Typography>
                <TextField
                    key="Name"
                    variant="outlined"
                    margin="normal"
                    fullWidth
                    id="Name"
                    label="Name"
                    value={user.name}
                    InputProps={{
                        readOnly: true,
                    }}
                />
                <TextField
                    variant="outlined"
                    margin="normal"
                    fullWidth
                    id="email"
                    label="Email Address"
                    value={user.email}
                    InputProps={{
                        readOnly: true,
                    }}
                />
                <TextField
                    variant="outlined"
                    margin="normal"
                    fullWidth
                    id="phone"
                    label="Phone"
                    value={user.phone_number}
                    InputProps={{
                        readOnly: true,
                    }}
                />
            </div>
            }</>
            </Container>
        </Grid>
    </div>
);

}