如何在Angular中获取FormArray被动形式的唯一值?

时间:2017-12-23 01:22:37

标签: javascript angular angular4-forms reactive-forms

我创建了一个stackblitz应用来展示我的问题:https://angular-ry1vc1.stackblitz.io/

我在选择的HTML列表上有formArray值。每当用户更改选择时,它应在页面上显示所选值。问题是如何只显示当前选择,它应该 NOT 覆盖之前选择的值。我想知道如何使用key使值的占位符唯一。 TIA

form.html

<form [formGroup]="heroForm" novalidate class="form">
  <section formArrayName="league" class="col-md-12">
    <h3>Heroes</h3>
    <div class="form-inline" *ngFor="let h of heroForm.controls.league.controls; let i = index" [formGroupName]="i">
      <label>Name</label>
      <select (change)="onSelectingHero($event.target.value)">
        <option *ngFor="let hero of heroes" [value]="hero.id" class="form-control">{{hero.name}}</option>
      </select> <hr />
      <div>
        Hero detail: {{selectedHero.name}}
      </div> <hr />
    </div>
    <button (click)="addMoreHeroes()" class="btn btn-sm btn-primary">Add more heroes</button>
  </section>
</form>

component.ts

import { Component, OnInit } from '@angular/core';
import { FormArray, FormBuilder, FormControl, FormGroup, Validators, NgForm } from '@angular/forms';

@Component({
  selector: 'my-app',
  templateUrl: './app.component.html',
  styleUrls: [ './app.component.css' ]
})
export class AppComponent implements OnInit  {
  heroes = [];
  heroForm: FormGroup;
  selectedHero;

  constructor(
    private fb: FormBuilder,
  ) {
    this.heroForm = fb.group({
      league: fb.array([
        this.loadHeroes(),
        this.loadHeroes(),
        this.loadHeroes()
      ])
    });
  }

  ngOnInit() {
    this.listHeroes();
  }

  public addMoreHeroes() {
    const control = this.heroForm.get('league') as FormArray;
    control.push(this.loadHeroes());
  }

  public loadHeroes() {
    return this.fb.group(
      {
        id: this.heroes[0],
        name: '',
        level: '',
        skill: '',
      }
    );
  }  

  public listHeroes() {
    this.heroes = [
      {
        id: 1,
        name: 'Superman'
      },
      {
        id: 2,
        name: 'Batman'
      },
      {
        id: 3,
        name: 'Aquaman'
      },
      {
        id: 4,
        name: 'Wonderwoman'
      }      
    ];
  }

  public onSelectingHero(heroId) {
    this.heroes.forEach((hero) => {
      if(hero.id === +heroId) {
        this.selectedHero = hero;
      }
    });
  }
}

1 个答案:

答案 0 :(得分:0)

如果这样做的目的是仅通过数组元素显示选定的英雄而不是替换所有选定的值,那么您可以使用数组表单元素获得一些帮助。

A。 onSeletingHeroselectedHero不是必需的,我使用表单值替换formControlName属性,在此示例中{{1控制是idselect是获取所选值id的方法。

h.value.id

B。为了获得所选的英雄,我添加了 <select formControlName="id"> <option *ngFor="let hero of heroes;" [value]="hero.id" class="form-control">{{hero.name}}</option> </select> <hr /> <div> Hero detail: {{getHeroById(h.value.id).name}} </div> <hr /> </div> 方法。

getHeroById

希望这些信息可以解决您的问题。干杯