我有一个changePasswordForm: FormGroup
,要在用户更改密码后显示为空且没有任何错误状态。
在REST调用返回后,我还执行以下操作:
this.changePasswordForm.reset();
// this.changePasswordForm.setErrors(null); // <-- same result
this.changePasswordForm.setErrors({required: null});
this.changePasswordForm.updateValueAndValidity();
但是,所有input
字段都保持错误状态。
如何从<input matInput>
中删除错误状态?