8

だから私はここでガイドを使用しました: https://angular.io/docs/ts/latest/cookbook/dynamic-form.html

既存のフィールドにさらにフィールドを追加する必要があります。動作するものを作成しましたが、不格好で、叩くとフォームがリセットされます。以下のコード:

dynamic-form.component.ts では:

add_textbox()
{
    this.questions.push(this.questionService.create_textbox({key: "test", label: "Test"}));
    console.log(this.questions);
    this.form = this.qcs.toFormGroup(this.questions);
}

question.service.ts で

create_textbox({key, value, label = '', order = 1, type = "text", description = "", help = ""}: {key?: any, value?: any, label?: any, order?: any, type?: any, description?: any, help?: any})
{
    return new TextboxQuestion({
        key,
        label,
        value,
        order,
        description,
        type
    });
}

私のボタンも入っていますが、代わりdynamic-form.component.htmlに入れたいです。dynamic-form-question.component.tsこれは可能ですか?

4

3 に答える 3

18

初めに

import { FormGroup,FormArray,FormBuilder,Validators } from '@angular/forms';

それから

 addForm: FormGroup; // form group instance

constructor(private formBuilder: FormBuilder) {}
    ngOnInit() { 
        //    *** this is code for adding invoice details ***
         this.addForm = this.formBuilder.group({
            invoice_no: ['', Validators.required],
            file_no: ['', Validators.required],
            description: ['', Validators.required],
            linktodrive: this.formBuilder.array([
                this.initLink(),
            ])
        });
    }
    initLink() {
        return this.formBuilder.group({
            linkAddress: ['', Validators.required]
        });
    }
    addLink() {
        const control = < FormArray > this.addForm.controls['linktodrive'];
        control.push(this.initLink());
    }
    removeLink(i: number) {
        const control = < FormArray > this.addForm.controls['linktodrive'];
        control.removeAt(i);
    }

HTML を次のように開始して閉じます。

<div formArrayName="linktodrive"></div>

フォームの動的フィールドを作成および削除するには、次の html を使用します。

<div *ngFor="let address of addForm.controls.linktodrive.controls; let i=index">
<div>
<span>Link {{i + 1}}</span>
<span *ngIf="addForm.controls.linktodrive.controls.length > 1"><a (click)="removeLink(i)">REMOVE</a></span>
</div>

<!-- Angular assigns array index as group name by default 0, 1, 2, ... -->
<div [formGroupName]="i">
<input type="text" placeholder="Enter Link" formControlName="linkAddress">
</div>
</div>

そして最後に「ADD」リンク

<div><a (click)="addLink()"></a></div>
于 2016-12-21T07:31:29.920 に答える