模型驱动的形式 - 原始总是真实的
Model driven form - pristine is always true
如何以编程方式将 pristine 设置为 false?
this.myForm.get('categories').set
.....设置什么?没有 setPristine。
出于某种原因,当我这样设置类别时:
this.myForm.get('categories').setValue(
this.multiselectFindCategory.selectedCategories
);
this.myForm.controls.categories.pristine
仍然等于 true。
this.myForm.get('categories').markAsDirty();
如何以编程方式将 pristine 设置为 false?
this.myForm.get('categories').set
.....设置什么?没有 setPristine。
出于某种原因,当我这样设置类别时:
this.myForm.get('categories').setValue(
this.multiselectFindCategory.selectedCategories
);
this.myForm.controls.categories.pristine
仍然等于 true。
this.myForm.get('categories').markAsDirty();