在Angular 6中将默认值设置为formArray

时间:2018-10-12 20:11:57

标签: angular

联系方式

interface Contact {
  name:string;
  age:number;
}

联系人组件,使用值初始化的联系人数组,

export class ContactComponent {

 contacts: Contact[] = [{name:'xyz', age:30}, {name:'abc', age: 25}];
 contactForm: FormGroup;

 constructor(private fb: FormBuilder) {
  this.contactForm = this.fb.group({
   contacts: this.fb.array([this.createContact()])
  });
 }

 createContact(): FormGroup {
    return this.fb.group({
       ???????? - How can initialize values here. 
    });
 }

}

还有其他更好的设计方法吗?

1 个答案:

答案 0 :(得分:1)

您可以映射contacts并将contacts中的每个元素转换为FormGroup并将其设置为contacts FormArray的一部分。 / p>

要将contact转换为Contact FormGroup,您可以简单地将contact对象作为arg传递给一个函数,该函数将使用这些值并将它们设置为控件的默认值。

尝试一下:

contacts: Contact[] = [{
  name: 'xyz',
  age: 30
}, {
  name: 'abc',
  age: 25
}];
contactForm: FormGroup;

constructor(private fb: FormBuilder) {}

ngOnInit() {
  this.contactForm = this.fb.group({
    contacts: this.fb.array(this.contacts.map(contact => this.createContact(contact)))
  });

  console.log(this.contactForm.value);

}

createContact(contact): FormGroup {
  return this.fb.group({
    name: [contact.name],
    age: [contact.age]
  });
}

这是您推荐的Sample StackBlitz