2

我有一个 ng-container,它描述了我所有可能的表单字段模板,基本上在一个大型 switch 语句上,具体取决于字段的元数据:

<ng-template #dynamicFormField let-field="inputField">
  <div *ngIf="field.dataTypeName == 'ShortText'">
    <mat-form-field class="col-md-6">
      <input matInput type="text" [placeholder]="field.attributeLabel" [formControlName]="field.attributeName">
    </mat-form-field>
  </div>

  <div *ngIf="field.dataTypeName == 'LongText'">
    <mat-form-field class="col-md-12">
      <input matInput type="text" [placeholder]="field.attributeLabel" [formControlName]="field.attributeName">
    </mat-form-field>
  </div>

  <div *ngIf="field.dataTypeName == 'Number'">
    <mat-form-field>
      <input matInput type="number" [placeholder]="field.attributeLabel" [formControlName]="field.attributeName">
    </mat-form-field>
  </div>
<ng-template>

我有一个基本表单组,然后表单组的一个属性是一个表单数组,其中每个元素都有自己的表单组。例如,数据模型如下所示:

{
  name: 'Article Name',
  description: 'Some description of the article',
  sections: [
    {
      sectionName: 'Rich text section',
      sectionContent: 'Some rich text'
    },
    {
      sectionName: 'Second section',
      sectionContent: 'Some rich text'
    }
  ]
}

其中每个字段都有描述其表单属性的相应元数据。

我希望能够在基本表单组和表单数组中的表单组中重用输入 switch 语句。但是,ng-container 内部无法访问由 formarray 的 formGroupName 输入指定的表单组:

<div *ngFor="let field of this.sectionTypeSchemas[section.value.sectionTypeId]">
  <div *ngIf="field.isVisible != false" formGroupName="{{i}}">
    <ng-container *ngTemplateOutlet="dynamicFormField;context:{ inputField:field }"></ng-container>
  </div>
</div>

我遇到的错误基本上是Angular找不到formarray的FormGroups内部的控件(即数据模型中的sectionName),尽管找到与基本formgroup控件相对应的控件没有问题(名称和描述来自数据模型)。有没有办法可以手动将表单组引用传递给 ng-container?可以在这里看到一个简短的示例。

4

1 回答 1

3

首先,我可能会使用子组件,而不是上面评论中建议的 ng-template。

然而,为了让您的示例正常工作,有两件事需要修复

在另一个组件或 ng-template 中使用 FormControls

每次在 ng-template 中使用 formGroup 的 formControl 时,如果 form-tag 放置在 ng-template 之外,则需要确保在 ng-template 中添加具有 formGroup 绑定的标签。

在您的情况下,有一些特别之处,因为您的 ng-template 中的 formGroup 实际上是一个 subFormGroup - 每个 formArrayItem 的 formGroup

FormArray 绑定

如果您要绑定到 formArray,您需要记住,您需要外部控件上的 formArrayName 以及与索引的绑定。请看这里以获得进一步的解释:FormArray binding

还有一件事

您在 stackblitz 中有一个错字: secitonHeader 而不是 sectionHeader。


这是一个工作:stackblitz

于 2019-03-26T14:53:59.533 回答