浏览器console 报

[DOM] Input elements should have autocomplete attributes (suggested: "current-password"): 

解决:

尝试改变

<input type="password" name="password">

<input type="password" name="password" autocomplete="on">

自动完成功能可让 Web 开发人员指定用户代理在填写表单字段值时提供自动帮助的权限(如果有),以及向浏览器提供有关字段中预期信息类型的指导。

 

参考 https://stackoverflow.com/questions/54970352/input-elements-should-have-autocomplete-attributes

Input elements should have autocomplete attributes