本文介绍了角度2:遍历反应式表单控件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想markAsDirty
FormGroup
内部的所有控件.
I would like to markAsDirty
all the controls inside of a FormGroup
.
推荐答案
发现Object.keys
可以处理此问题.
Object.keys(this.form.controls).forEach(key => {
this.form.get(key).markAsDirty();
});
对于Angular 8+,请使用以下命令(基于米开朗基罗的答案):
For Angular 8+, use the following (based on Michelangelo answer):
Object.keys(this.form.controls).forEach(key => {
this.form.controls[key].markAsDirty();
});
这篇关于角度2:遍历反应式表单控件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!