联系方式
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.
});
}
}
还有其他更好的设计方法吗?
答案 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。