this.parentForm = this._fb.group({
testControl1: [],
testControl2: [],
testChildForm1: this._fb.group({
testChildControl1: [],
testChildControl2: []
})
)};
对于上面的父表单,它包含两个表单控件和一个嵌套的子表单组。
我想访问子窗体的值,如下所示
this.parentForm.controls [' testChildForm1&#39]。controls.testChildControl1
但无法访问子表单的控件,因为TS出错属性'控件'类型' AbstractControl'
上不存在答案 0 :(得分:0)
这样的事情怎么样:
this.parentForm.get(`testChildForm1.testChildControl1`).value