Angular FormArray 在 ngOnInit 上返回 null

问题描述

我有一个子组件,其中有两个 FormGroup。一种使用简单的 FormControl,另一种使用 FormArray。我遵循了这个 stackblitz 示例以及许多其他与 FormArray 相关的示例,但仍然不知道为什么它不起作用。

自定义条件.ts

  @input() parentForm: FormGroup;
  customConditions: FormGroup

  ngOnInit() {
    this.initForm()
  }

  initForm(){
    this.customConditions = this.fb.group({
      custom: this.fb.array([])
    });
    this.getCustomArray.push(this.getCustomConditionController())

    this.parentForm.addControl("CustomConditions",this.customConditions);
  }

  get getCustomArray(): FormArray {
    return <FormArray>this.customConditions.get("custom") 
  }

  getCustomConditionController(): FormGroup {
    return this.fb.group({
      Conditionarabic: this.fb.control(""),ConditionEnglish: this.fb.control("")
    });
  }

  addCustomConditions() {
    this.getCustomArray.push(this.getCustomConditionController())
  }

  removeCustomConditions(i: number) {
    this.getCustomArray.removeAt(i)
  }

  isLastRow(rowIndex: any) {
    return this.customConditions.controls.length == rowIndex + 1
  }      

自定义条件.html

<div class="row" [formGroup]="customConditions">
    <ng-container formArrayName="custom">
        <div class="col-12" *ngFor="let fg of getCustomArray.controls; let i = index">
            <div class="row mt-3 mb-3" [formGroupName]='fg'>
                <div class="col-4">
                    <div class="form-group">
                        <label for="ConditionEnglish{{i}}" class="control-label">Condition English</label>
                        <input 
                           type="text" 
                           class="form-control" 
                           tabindex="{{i+1}}" 
                           id="ConditionEnglish{{i}}"
                           formControlName="ConditionEnglish" 
                           autocomplete="off" />
                    </div>
                </div>
                <div class="col-4">
                    <div class="form-group">
                        <label for="Conditionarabic{{i}}" class="control-label">Condition arabic</label>
                        <input 
                           type="text" 
                           name="Conditionarabic" 
                           class="form-control"
                           tabindex="{{i+1}}" 
                           id="Conditionarabic{{i}}"
                           formControlName="Conditionarabic" 
                           autocomplete="off" />
                    </div>
                </div>
                <div class="col-4">
                    <span class="file-add" *ngIf="i > 0">
                      <a (click)="removeCustomConditions(i)"><i class="fal fa-trash-alt"></i></a> 
                    </span>
                    <span class="file-add" *ngIf="isLastRow(i)">
                      <a (click)="addCustomConditions()"><i class="fal fa-plus-circle"></i></a> 
                    </span>
                </div>
            </div>
        </div>
    </ng-container>
</div>

错误获取ERROR Error: Cannot find control with path: 'custom -> [object Object]'this.customConditions.get("custom") 在组件加载后返回空数组,这就是为什么 getCustomArray.controls 为空所以 html 不呈现。

在这里做错了什么?

解决方法

您的代码中存在语法错误:

  get getCustomArray(): FormArray {
    return= <FormArray>this.customConditions.get("custom") 
  }

固定:

  get getCustomArray(): FormArray {
    return <FormArray>this.customConditions.get("custom") 
  }

像这样修复它:

<form class="row" [formGroup]="customConditions">
  <ng-container formArrayName="custom">
    <div
      class="col-12"
      [formGroupName]="i"
      *ngFor="let fg of getCustomArray.controls; let i = index"
    >
      <div class="row mt-3 mb-3">
        <div class="col-4">
          <div class="form-group">
            <label for="ConditionEnglish{{ i }}" class="control-label"
              >Condition English</label
            >
            <input
              type="text"
              class="form-control"
              tabindex="{{ i + 1 }}"
              id="ConditionEnglish{{ i }}"
              formControlName="ConditionEnglish"
              autocomplete="off"
            />
          </div>
        </div>
        <div class="col-4">
          <div class="form-group">
            <label for="ConditionArabic{{ i }}" class="control-label"
              >Condition Arabic</label
            >
            <input
              type="text"
              name="ConditionArabic"
              class="form-control"
              tabindex="{{ i + 1 }}"
              id="ConditionArabic{{ i }}"
              formControlName="ConditionArabic"
              autocomplete="off"
            />
          </div>
        </div>
        <div class="col-4">
          <span class="file-add" *ngIf="i > 0">
            <a (click)="removeCustomConditions(i)"
              ><i class="fal fa-trash-alt"></i
            ></a>
          </span>
          <span class="file-add" *ngIf="isLastRow(i)">
            <a (click)="addCustomConditions()"
              ><i class="fal fa-plus-circle"></i
            ></a>
          </span>
        </div>
      </div>
    </div>
  </ng-container>
</form>

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...