本文主要是介绍[DOM] Input elements should have autocomplete attributes (suggested: current-password): (More info,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
我的处女作《Canvas系列教程》在我的Github上正在连载更新,希望能得到您的关注和支持,让我有更多的动力进行创作。
教程介绍、教程目录等能在README里查阅。
传送门:https://github.com/827652549/CanvasStudy
在React调用Antd mobile中Input密码组件时,chrome控制台提示
其实是需要添加自动填充的属性
autocomplete="current-password"
但是要注意,React的写法要改成
autoComplete="current-password"
<InputItemtype="password"placeholder="请输入密码"error={this.state.hasError}onErrorClick={this.onErrorClickID}onChange={this.onChangeID}value={this.state.value}autoComplete="current-password">密码</InputItem>
这篇关于[DOM] Input elements should have autocomplete attributes (suggested: current-password): (More info的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!