web-dev-qa-db-ja.com

Angular active form error:must form a value for form control with name:

私は非常に初心者であることを前提としています。 angular反応的なフォームを実装しようとしていますが、次のエラーが発生します:「フォームコントロールの値を指定する必要があります:宛先。

これは私のコンポーネントと私のhtmlの関連部分です:

import { Component, Inject } from '@angular/core';
import { Http } from "@angular/http";
import { FormGroup, FormControl, FormBuilder, Validators } from "@angular/forms";

@Component({
    selector: 'home',
    templateUrl: './home.component.html'
})
export class HomeComponent {

    locations: Location[];
    flightChoice: FlightChoice;
    form: FormGroup;


    constructor(http: Http, @Inject('BASE_URL') private baseUrl: string,
        private fb: FormBuilder) {

        this.createForm();

        http.get(baseUrl + 'api/FlightChoice/dest_locations').subscribe(result => {
            this.locations = result.json() as Location[];
            console.log(this.locations);

        }, error => console.error(error));

        http.get(baseUrl + 'api/FlightChoice/choice').subscribe(result => {
            this.flightChoice = result.json() as FlightChoice;
            this.updateForm();
        }, error => console.error(error));

    }

    createForm() {
        this.form = this.fb.group({
            Destination: [0],
            NrPasg: [1],
            TwoWays: [false],
            DepartureDate: ['', Validators.required],
            ReturnDate: ['', Validators.required]
        });
    }

    updateForm() {

        this.form.setValue({
            Destination: this.flightChoice.DestinationId,
            NrPasg: this.flightChoice.NrPasg,
            TwoWays: this.flightChoice.TwoWays,
            DepartureDate: this.flightChoice.DepartureDate,
            ReturnDate: this.flightChoice.ReturnDate
        });

    }

html:

<form [formGroup]="form" (ngSubmit)="onSubmit()">
        <div>
            <label for="destination">Destination:</label>
            <br />
            <select id="destination" formControlName="Destination">
                <option *ngFor="let location of locations" value="{{ location.id }}">
                    {{ location.name }}
                </option>
            </select>
            <br />
            <label for="nrPasg">Number of Passengers:</label>
            <br />
            <input formControlName="NrPasg" type="number" id="nrPasg" value="1" />
            <label for="twoWays"></label>
            <br />
            <select id="twoWays" formControlName="TwoWays">
                <option value="false">one way</option>
                <option value="true">two ways</option>
            </select>
            <br />
            <label for="departureDate">Departure Date:</label>
            <br />
            <input formControlName="DepartureDate" type="date" id="departureDate" />
            <br />
            <label for="returnDate">Return Date:</label>
            <br />
            <input formControlName="ReturnDate" type="date" id="returnDate" />

        </div>
        <div>
            <button type="submit">Search Flights</button>

        </div>
    </form>

CreateFormメソッドで何か間違っていると思いますが、値を割り当てる方法がわかりません

8
user1238784

おそらくエラーが表示されるのは、this.flightChoice.DestinationId === undefinedで、フォームのundefinedフィールドにDestinationを設定しようとしたためです。

APIがthis.flightChoiceにデータを正しくダウンロードしているかどうかを確認します。

7
ambussh

このエラーは、setValueformGroupを使用しているが、そのグループ内のすべてのコントロールの値を渡していない場合に発生する可能性があります。例えば:

let group = new FormGroup({
  foo: null, 
  bar: null
});
group.setValue({foo: 'only foo'}); //breaks
group.setValue({foo: 'foo', bar: 'bar'}); //works

本当にグループのコントロールのsomeのみを更新したい場合は、代わりにpatchValueを使用できます。

group.patchValue({foo: 'only foo, no problem!'});

setValueおよびpatchValueのドキュメント ここ

5
adamdport

残念ながら、「未定義」は許可されていません。各プロパティを「null」に設定する必要があります。

プロパティをundefinedに設定することは完全に正当です。サーバーから直接取得する場合は一般的です。

次のようにsetValueを呼び出す前にプロパティを変換できます。

_   // set all 'missing' OR 'undefined' properties to null
        const newValue: any = {...value};

        for (const field in this.controls) { 

            if (newValue[field] === undefined) {
                newValue[field] = null;
            }
        }

        super.setValue(newValue, options);
_

JSON.stringify()undefinedを削除するため、注意してください。これを使用して値backをサーバーに送信する場合は、不足しているプロパティを処理できることを確認する必要があります。そこ。

1
Simon_Weaver