📜  angular 9 表单值更改 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:59.179000             🧑  作者: Mango

代码示例1
this.reactiveForm.get("firstname").valueChanges.subscribe(selectedValue => {
  console.log('firstname value changed')
  console.log(selectedValue)                              //latest value of firstname
  console.log(this.reactiveForm.get("firstname").value)   //latest value of firstname
})