是否有办法在听formControl
而不是某个控件的更改时,确定哪个form
的值已更新?
代码是这样的:
myForm = fb.group( .... );
...
myForm.valueChanges.subscribe(changes=> ????? which control changed ????? );
答案 0 :(得分:0)
您可以使用dirty查找表单控件中的更改
this.myForm['controls'].forEach((element, index) => {
if (element.dirty) {
// your code here
}
});