web-dev-qa-db-ja.com

ボタンを使用して入力フィールドをさらに追加する方法-Angular 2つの動的フォーム

だから私はここでガイドを使いました: 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に入れたいです。これは可能ですか?

7
A. Lau

まず第一に

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>

そして最後に「追加」リンク

<div><a (click)="addLink()"></a></div>
16
Amit kumar

私は非常に有用なブログ投稿を行ったが、それはうまくいった。 動的に行を動的に追加するangular 6 。コード内のあらゆる種類の疑問に対するコメント

2
Akshay Antony

優勝したソリューションは少し時代遅れかもしれません。新しいng'6構文で動作するコードは、多かれ少なかれ次のようになります。

コントローラ:

form = this.fb.group({
    title: ['New Project Name'],
    tasks: this.fb.group({
        title: ['Task title XX'],
        content: ['What is this about'],
        **subtasks: this.fb.array([this.initTask()]),**
        points: ['5'],
        hints: ['No hints']
    })
});
constructor(private fb: FormBuilder) {}

ngOnInit() {}

onSubmit() {
    console.log(this.form);
}

initTask() {
    return this.fb.group({
        subtask: ['', Validators.required]
    });
}

get tasksControl () {
    return this.form.get('tasks') as FormGroup;
}

get subtaskControl () {
    return this.tasksControl.get('subtasks') as FormArray;
}

addLink() {
    this.subtaskControl.Push(this.initTask());
}
removeLink(i: number) {
    this.subtaskControl.removeAt(i);
}

そして、このようなhtmlで:

<div formArrayName="subtasks">
    <div *ngFor="let subtask of subtaskControl.controls; let i=index">
        <div [formGroupName]="i">
            <input type="text" placeholder="Enter Link" formControlName="subtask">
        </div>
        <div>
            <a class="btn btn-danger btn-sm" (click)="removeLink(i)">REMOVE</a>
            <a class="btn btn-success btn-sm" (click)="addLink()">Add</a>
        </div>
    </div>
</div>
0
Michael Lester