React MUI [FilledInput] 没有捕获最后一个字符

发布于 2025-01-21 02:19:26 字数 1936 浏览 0 评论 0原文

我使用 MUI 输入装饰来启用“显示/隐藏密码”,并使用 React State 来保留最终密码(以便通过登录传递密码)。

由于某种原因,最新的字符丢失了,下面是显示这个想法的代码: (链接:https://codesandbox.io/ s/passwordwithshow-c3ktnj?file=/src/App.js:0-1894)

export default function InputAdornments() {
  const [values, setValues] = React.useState({
    password: "",
    showPassword: false
  });

  const handleChange = (prop) => (event) => {
    setValues({ ...values, [prop]: event.target.value });
    console.log(values.password);
  };

  const handleClickShowPassword = () => {
    setValues({
      ...values,
      showPassword: !values.showPassword
    });
  };

  const handleMouseDownPassword = (event) => {
    event.preventDefault();
  };

  return (
    <div>
      <FormControl sx={{ m: 1, width: "30ch" }} variant="filled">
        <InputLabel htmlFor="filled-adornment- password">Password</InputLabel>
        <FilledInput
          id="filled-adornment-password"
          type={values.showPassword ? "text" : "password"}
          value={values.password}
          onChange={handleChange("password")}
          endAdornment={
            <InputAdornment position="start">
              <IconButton
                aria-label="toggle password visibility"
                onClick={handleClickShowPassword}
                onMouseDown={handleMouseDownPassword}
                edge="start"
              >
                {values.showPassword ? <VisibilityOff /> : <Visibility />}
              </IconButton>
            </InputAdornment>
          }
        />
      </FormControl>
    </div>
  );
}

正如您在控制台中看到的,缺少“I”:

输入图片此处描述

I'm using MUI Input Adornments to enable 'show / hide password' and React State to keep the final password (in order to pass it via the login).

For some reason, latest character is missing, below is a code that show the idea:
(link: https://codesandbox.io/s/passwordwithshow-c3ktnj?file=/src/App.js:0-1894)

export default function InputAdornments() {
  const [values, setValues] = React.useState({
    password: "",
    showPassword: false
  });

  const handleChange = (prop) => (event) => {
    setValues({ ...values, [prop]: event.target.value });
    console.log(values.password);
  };

  const handleClickShowPassword = () => {
    setValues({
      ...values,
      showPassword: !values.showPassword
    });
  };

  const handleMouseDownPassword = (event) => {
    event.preventDefault();
  };

  return (
    <div>
      <FormControl sx={{ m: 1, width: "30ch" }} variant="filled">
        <InputLabel htmlFor="filled-adornment- password">Password</InputLabel>
        <FilledInput
          id="filled-adornment-password"
          type={values.showPassword ? "text" : "password"}
          value={values.password}
          onChange={handleChange("password")}
          endAdornment={
            <InputAdornment position="start">
              <IconButton
                aria-label="toggle password visibility"
                onClick={handleClickShowPassword}
                onMouseDown={handleMouseDownPassword}
                edge="start"
              >
                {values.showPassword ? <VisibilityOff /> : <Visibility />}
              </IconButton>
            </InputAdornment>
          }
        />
      </FormControl>
    </div>
  );
}

As you can see in the console, 'I' is missing:

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只是我以为 2025-01-28 02:19:26

您的代码没有任何问题,所以基本上发生的情况是,当 onChange 事件触发时,它会使用目标值更新 state ,并且当您在控制台中记录 state 时您的 onChange 处理程序,它将记录 prevState 因为当前状态尚未在状态中更新。

因此,如果您想使用 onChange 内的值,您应该使用 event.target.value 而不是 state。

console.log(password) => console.log(event.target.value)

there is nothing wrong with your code, So basically what happening is when the onChange event fires it updates the state with the target value and when you're console logging the state inside your onChange handler, it will log the prevState coz the current state is not updated yet in the states.

so if you want to use the value inside the onChange you should use the event.target.value instead of state.

console.log(password) => console.log(event.target.value)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文