Angular 2formArraysで名前属性が指定されていないコントロールが見つかりません


92

コンポーネントのformArrayを反復処理しようとしていますが、次のエラーが発生します

Error: Cannot find control with unspecified name attribute

これが私のクラスファイルのロジックの様子です

export class AreasFormComponent implements OnInit {
    public initialState: any;
    public areasForm: FormGroup;

    constructor(private fb: FormBuilder) { }

    private area(): any {
      return this.fb.group({
          name: ['', [Validators.required]],
          latLong: ['', [Validators.required]],
          details: ['', [Validators.required]]
      });
    }

    public ngOnInit(): void {
        this.areasForm = this.fb.group({
            name: ['', [Validators.required]],
            areas: this.fb.array([this.area()])
        });
    }
}

と私のテンプレートファイル

<form class="areas-form" [formGroup]="areasForm" (ngSubmit)="onSubmit(areasForm.values)">
    <md-input-container class="full-width">
        <input mdInput placeholder="Location Name" type="text" formControlName="name" required>
        <md-error *ngIf="areasForm.get('name').hasError('required')">Please enter the locationName</md-error>
    </md-input-container>
    <md-grid-list cols="1" [formArrayName]="areas">
        <md-grid-tile formGroupName="i"  colspan="1" rowHeight="62px" *ngFor="let area of areasForm.controls.areas.controls; let i = index ">
            <md-grid-list cols="3" rowHeight="60px">
                <md-grid-tile colspan="1">
                    <md-input-container class="full-width">
                        <input mdInput placeholder="Area Name" type="text" formControlName="name" required>
                        <md-error *ngIf="areasForm.get('areas').controls[i].name.hasError('required')">Please enter the area name</md-error>
                    </md-input-container>
                </md-grid-tile>
                <md-grid-tile colspan="1">
                    <md-input-container class="full-width">
                        <input mdInput placeholder="details" type="text" formControlName="details" required>
                        <md-error *ngIf="areasForm.get('areas').controls[i].name.hasError('required')">Please enter the locationName</md-error>
                    </md-input-container>
                </md-grid-tile>
                <md-grid-tile colspan="1">
                    <button md-fab (click)="remove(i)"><md-icon>subtract</md-icon>Remove Area</button>
                </md-grid-tile>
            </md-grid-list>
        </md-grid-tile>
    </md-grid-list>
    <button type="submit" [disabled]="areasForm.invalid" md-raised-button color="primary">Submit</button>
</form>

回答:


148

からブラケットを取り外します

[formArrayName]="areas" 

とのみ使用

formArrayName="areas"

これは[ ]変数をバインドしようとしているためですが、そうではありません。また、送信に注意してください。次のようになります。

(ngSubmit)="onSubmit(areasForm.value)"

の代わりにareasForm.values


あなたのプランカーは壊れていますか?
ジェス

2
それでも[FormGroup] = "areasForm"は正しいですか?アンギュラは本当に....パンツの中で私を蹴っている
グレッグ

中括弧はformGroupNameと私の場合は問題だった
ルイス・コントレラス

2
@gregコメントに遅れる...[formGroup]="areasForm"areasFormコンポーネントTSの変数であるため正しいのに対し、そうでareasはありません。それはareasForm:)の所有物です
AJT 8219年

17

私の場合、formControlの名前を二重引用符で囲み、文字列として解釈されるように一重引用符で囲むことで問題を解決しました。

[formControlName]="'familyName'"

以下のように:

formControlName="familyName"

8

私にとっての問題は私が持っていたということでした

[formControlName]=""

の代わりに

formControlName=""

1
私は[formControl]からformControlNameに変更に必要な
ダニーロ

7

の代わりに

formGroupName="i"

使用する必要があります:

[formGroupName]="i"

ヒント

コントロールをループしているareaので、すでに変数があり、これを置き換えることができます。

*ngIf="areasForm.get('areas').controls[i].name.hasError('required')"

沿って:

*ngIf="area.hasError('required', 'name')"

おかげで、それは問題の一部のようでしたが、上記の答えは私の問題を解決しました。
bazinga777 2017

4

私の場合、親を追加[formGroupName]="i"したりformControlName指定しformArrayNameたりするのを忘れていました。フォームグループツリーに注意してください。


1
私も両方使っていました。をformArrayName階層の上位にあるDOM要素に配置することを忘れないでください[formGroupName]="i"(たとえば、ループ要素: <div *ngFor=let ctrl of formArrayCtrl; let i = index"><div [formGroupName]="i"></div></div>
John

1
グループツリーの形成に注意を払ってください。
सत्यमेवजयते

3

fromArrayNameformArrayNameどこかではなく持っていたので、これは私のために起こっていました😑


1
!@#$🤦🤦🤦🤦🤦
WAL

1
@wal同じ問題がありましたか?
ジェイコブスタム

1
はい、私はあなたの答えを読んだ後にこのタイプミスをチェックしましたが、初めてそれを見逃しました
wal

1
聖なる牛私は「formArraryName」を持っていて、あなたは私に多くの時間を節約してくれました。
アシュリー

0

これは、formControlNameを空のままにしたために発生しました(formControlName="")。その余分なフォームコントロールは必要なかったので、それを削除してエラーを解決しました。


0

だから、私はこのコードを持っていました:

<div class="dropdown-select-wrapper" *ngIf="contentData">
    <button mat-stroked-button [disableRipple]="true" class="mat-button" (click)="openSelect()" [ngClass]="{'only-icon': !contentData?.buttonText?.length}">
      <i *ngIf="contentData.iconClassInfo" class="dropdown-icon {{contentData.iconClassInfo.name}}"></i>
      <span class="button-text" *ngIf="contentData.buttonText">{{contentData.buttonText}}</span>
    </button>
    <mat-select class="small-dropdown-select" [formControl]="theFormControl" #buttonSelect (selectionChange)="onSelect(buttonSelect.selected)" (click)="$event.stopPropagation();">
      <mat-option *ngFor="let option of options" [ngClass]="{'selected-option': buttonSelect.selected?.value === option[contentData.optionsStructure.valName]}" [disabled]="buttonSelect.selected?.value === option[contentData.optionsStructure.valName] && contentData.optionSelectedWillDisable" [value]="option[contentData.optionsStructure.valName]">
        {{option[contentData.optionsStructure.keyName]}}
      </mat-option>
    </mat-select>
  </div>

ここではスタンドアロンのformControlを使用していましたが、フォームグループやフォーム配列を操作していなかったため、私には意味のないエラーが発生していました...選択に* ngIfを追加したときにのみ消えましたそれ自体なので、実際に存在する前に使用されていません。それが私の場合の問題を解決したものです。

<mat-select class="small-dropdown-select" [formControl]="theFormControl" #buttonSelect (selectionChange)="onSelect(buttonSelect.selected)" (click)="$event.stopPropagation();" *ngIf="theFormControl">
          <mat-option *ngFor="let option of options" [ngClass]="{'selected-option': buttonSelect.selected?.value === option[contentData.optionsStructure.valName]}" [disabled]="buttonSelect.selected?.value === option[contentData.optionsStructure.valName] && contentData.optionSelectedWillDisable" [value]="option[contentData.optionsStructure.valName]">
            {{option[contentData.optionsStructure.keyName]}}
          </mat-option>
        </mat-select>
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.