如何从<input matinput =“” />删除错误状态?

时间:2018-12-04 17:44:28

标签: typescript angular-material2

我有一个changePasswordForm: FormGroup,要在用户更改密码后显示为空且没有任何错误状态。

在REST调用返回后,我还执行以下操作:

this.changePasswordForm.reset();
// this.changePasswordForm.setErrors(null); // <-- same result
this.changePasswordForm.setErrors({required: null});
this.changePasswordForm.updateValueAndValidity();

但是,所有input字段都保持错误状态。

如何从<input matInput>中删除错误状态?

0 个答案:

没有答案