【发布时间】:2018-07-22 19:01:58
【问题描述】:
我尝试过但未能找到重置我的角度形式的方法。
有人可以帮忙吗?
<form #thisIsAForm>
<mat-form-field class="full-width">
<input matInput placeholder="Weather">
</mat-form-field>
</form>
<button mat-raised-button (click)="resetForm()">Reset</button>
export class Example{
@ViewChild('thisIsAForm') thisIsAForm;
resetForm() {
this.thisIsAForm.reset();
}
}
【问题讨论】:
标签: angular angular-reactive-forms