我有这个输入:
<input id="password" type="password" class="form-control" name="password" [(ngModel)]="password">
现在我有功能提交,我检查用户是否输入有效密码,如果不是我在其他地方:
else{
this.error = true;
this.message = 'Wrong username or email!'
}
我怎么能在其他地方添加这样的东西来清空这个字段:
this.password = '';
答案 0 :(得分:1)
您需要在组件内声明密码。
password: string;