hjin-me / blog

This is my blog
http://huangj.in
Other
9 stars 2 forks source link

Angular Material 实践碎片整理 #25

Open hjin-me opened 5 years ago

hjin-me commented 5 years ago

Reactive Form reset 后,Validator 没有重置

<form [formGroup]="myFormGroup" #f="ngForm">
  ...
</form>
@ViewChild('f') myNgForm;

reset() {
  this.myNgForm.resetForm();
}

https://github.com/angular/material2/issues/4190