我必须重置我的表单以及验证.是否有任何方法可以将表单状态从ng-dirty重置为ng-pristine.
以下是它目前如何与Angular 4.1.0 - 5.1.3一起使用:
class YourComponent {
@ViewChild("yourForm")
yourForm: NgForm;
onSubmit(): void {
doYourThing();
// yourForm.reset(), yourForm.resetForm() don't work, but this does:
this.yourForm.form.markAsPristine();
this.yourForm.form.markAsUntouched();
this.yourForm.form.updateValueAndValidity();
}
}
from.resetForm()
我已经尝试了很多东西,我发现实际上将form.submitted重置为false的唯一内容如下:
在模板中,将表单发送到提交函数: