Angular2“覆盖”表单组中的特定表单控件

时间:2017-04-13 09:19:35

标签: angular angular2-forms angular2-formbuilder

我想知道是否可以使用Angular2扩展/覆盖FormGroup结构。

我有一个FormGroup:

this.formgroup1 = this.fb.group({
  control1 : '', // the field will be a select
  control2 : '',
  control3 : ''
})

我要构建另一个FormGroup,它几乎相同但只有一个不同的控件:

this.formgroup2 = this.fb.group({
  control0 : '', // the field will be an input
  control2 : '',
  control3 : '' 
})

有没有办法根据formgroup1结构构建formgroup2?我的目标是不重复与上面相同的代码。

谢谢!

0 个答案:

没有答案