我在重复的表中有表单数组名称,我想在表单数组名称的任何表中加行,并且我有表单控件名称的索引
角度7 enter image description here
在html文件中:
在说明中的照片
在ts文件中:
patchValuestourguide( nationality , day_cost , no_days , no_person, cost_per_person, including) {
return this.formBuilder.group({
day_cost : ['']
});
}
addTourguideFeildValue(index) {
console.log(index);
const control = this.formTourguide.get('Tourguide') as FormArray;
control.push(this.patchValuestourguide( ''));
this.TourGuidefieldArray.push(this.newTourGuideAttribute);
this.newTourGuideAttribute = [];
}