[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"

密码

 

你可能感兴趣的:(前端bug,React,antd,DOM,autocomplete)