我正在使用react material UI 4,当我关注来自TextField的密码字段时,我想禁用浏览器自动填充/自动完成建议。
我的要求是不显示建议,当我们把重点放在该字段和字段类型是密码。用户名和电子邮件,它是工作,但由于某种原因,它是不工作的密码字段。
我已经尝试低于approoch,但没有工作
<TextField
inputProps={{
autoComplete: 'off'
}}
/>
===============================
<TextField
inputProps={{
...params.inputProps,
autoComplete: 'new-password',
}}
/>
=====================
<TextField
autoComplete="new-password"
/>
=========================
//Below works but then this field no more acts as a password field
<TextField
label="Password"
className={classes.textField}
name="password"
inputProps={{
type:"password",
autoComplete: 'new-password'
}} />
任何帮助都将不胜感激。谢谢
2条答案
按热度按时间acruukt91#
试试我下面添加的方法。它对我很有效。
更新答案:
<TextField autoComplete="chrome-off" />
如果你还有什么问题就告诉我。
krcsximq2#