目前我有2个嵌套表格。
<form [formGroup]="form1">
<input formControlName="field1" type="text">
<form [formGroup]="form2">
<input type="text" formControlName="field2">
<input type="button">
</form>
<input type="button">
</form>
我知道对于嵌套表单我应该使用嵌套表单组,但我有一个特殊情况。
如果我使用表单构建器独立初始化这些表单,是否允许角度2? (我尝试了我的情况,但是这很有效,但是HTML 5禁止这样做,这会是一个跨浏览器的解决方案吗?)
如果没有,我会解释我的解决方案。