如何使用 React 禁用 antd 输入的自动填充
How to disable autofill for antd input with react
你好,我试图创建一个新表单来添加新用户,这个表单包含一个输入 'username'
和另一个 'password'
,我的问题是当我打开表单时输入用户名和密码默认情况下获取保存在浏览器中的用户名和密码,我尝试使用用户 autoComplete='false'
但它不起作用。
我的问题是如何禁用此功能,任何提示都会有帮助
这是它的样子
某些版本的浏览器会忽略这些自动完成属性。
请检查这个Ans of this problem
我通过将 autoComplete="new-password"
添加到 Input.Password
解决了这个问题
<Input.Password placeholder="Mot de Passe" autoComplete="new-password" />
你好,我试图创建一个新表单来添加新用户,这个表单包含一个输入 'username'
和另一个 'password'
,我的问题是当我打开表单时输入用户名和密码默认情况下获取保存在浏览器中的用户名和密码,我尝试使用用户 autoComplete='false'
但它不起作用。
我的问题是如何禁用此功能,任何提示都会有帮助
这是它的样子
某些版本的浏览器会忽略这些自动完成属性。
请检查这个Ans of this problem
我通过将 autoComplete="new-password"
添加到 Input.Password
<Input.Password placeholder="Mot de Passe" autoComplete="new-password" />