next.js MUI:停止下拉菜单跳转

7kqas0il  于 2022-11-23  发布在  其他
关注(0)|答案(2)|浏览(174)

我在next.js项目中使用TextFieldMenuItem组件。
我在TextField中传递了“select”属性,这使得文本字段在内部使用Select组件。
我的问题是:单击后,下拉菜单在屏幕上跳跃(下拉菜单在屏幕左上角显示1秒左右,最终移动到选择字段下方)。
下面是我的代码:

<div>
              <TextField
                focused
                sx={{ m: 0.5, width: 130 }}
                select
                id="birthdayD"
                name="birthdayD"
                label="Geburtstag"
                type="Geburtstag"
                SelectProps={{
                  MenuProps: {
                    sx: { maxHeight: 200 },
                  },
                  variant: "menu",
                  getContentAnchorEl: null,
                }}
              >
                {day.map((option) => (
                  <MenuItem key={option.value} value={option.value}>
                    {option.label}
                  </MenuItem>
                ))}
             </TextField>
    </div>

Here's是一篇关于为什么我应该使用variant: "menu", getContentAnchorEl: null的很棒的文章,但是在我的例子中,这个问题并没有得到解决。

ddarikpa

ddarikpa1#

这里我可能是错的,但你可以使用文档中的一个示例:

<FormControl fullWidth>
  <InputLabel id="demo-simple-select-label">Age</InputLabel>
  <Select
    labelId="demo-simple-select-label"
    id="demo-simple-select"
    value={age}
    label="Age"
    onChange={handleChange}
  >
    <MenuItem value={10}>Ten</MenuItem>
    <MenuItem value={20}>Twenty</MenuItem>
    <MenuItem value={30}>Thirty</MenuItem>
  </Select>
</FormControl>

https://mui.com/material-ui/react-select/#basic-select

ltskdhd1

ltskdhd12#

variant属性更改为MenuProps并删除getContentAnchorEl,因为它在MUI v5中不再使用

<TextField
  focused
  sx={{ m: 0.5, width: 130 }}
  select
  id="birthdayD"
  name="birthdayD"
  label="Geburtstag"
  type="Geburtstag"
  SelectProps={{
    MenuProps: {
      sx: { maxHeight: 200 },
      variant: "menu"
    }
  }}
>
  {day.map((option) => (
    <MenuItem key={option.value} value={option.value}>
      {option.label}
    </MenuItem>
  ))}
</TextField>

在此处检查live example

相关问题