How to watch all FormControls ValueChanges except specific control?

后端 未结 4 1862
名媛妹妹
名媛妹妹 2021-01-12 10:33

I have a form that do a computation whenever a control input value changes.

Here is my form_group looks like:

form_group = this.fb.group         


        
4条回答
  •  广开言路
    2021-01-12 11:06

    You just need to access to the control and subscribe to value changes property like this

        this.form_group.get('control1').valueChanges.subscribe(value => {
            console.log(value)
        })
    

提交回复
热议问题