在Angular反应形式中,我可以添加没有数组的嵌套形式吗?

时间:2017-10-19 19:14:06

标签: angular angular-reactive-forms

    this.parentForm = this._fb.group({
     testControl1: [],
     testControl2: [],
     testChildForm1: this._fb.group({
       testChildControl1: [],
       testChildControl2: []
     })
   )};

对于上面的父表单,它包含两个表单控件和一个嵌套的子表单组。

我想访问子窗体的值,如下所示

this.parentForm.controls [' testChildForm1&#39]。controls.testChildControl1

但无法访问子表单的控件,因为TS出错属性'控件'类型' AbstractControl'

上不存在

1 个答案:

答案 0 :(得分:0)

这样的事情怎么样:

this.parentForm.get(`testChildForm1.testChildControl1`).value