防止在角材料设计中自动填充保存的密码
Posted
技术标签:
【中文标题】防止在角材料设计中自动填充保存的密码【英文标题】:Prevent autofill the saved password in angular material design 【发布时间】:2016-11-30 01:40:52 【问题描述】:如何防止密码字段在角度材料设计中自动填充已保存的密码
我使用了 autocomplete="off" 它对我不起作用。
<md-input-container class="md-block margin-top-10" flex-gt-sm>
<input type="password" name="password" ng-model="auth.user.password"
name="password" ng-required="true" autocomplete="off" >
</md-input-container>
【问题讨论】:
有几个关于这个的问题,包括这个 - ***.com/questions/2530/… 【参考方案1】:据我所知,这是材料的问题,如 here 所述。
如 cmets 中所述,有一个解决方法,只需在表单定义中添加 autocomplete="off"
。
【讨论】:
在表单定义中添加 autocomplete="off" 对我不起作用以上是关于防止在角材料设计中自动填充保存的密码的主要内容,如果未能解决你的问题,请参考以下文章