我有一个表单组,其中放置了一个formArray字段,该字段本身具有三个表单字段,例如socialId,socialSlug和socialUrl。
,我收集了30个社交媒体名称。我想要遍历它,并为每个社交媒体对象填充一个formArray字段。
formgroup本身是可选的,但是应该对URL进行验证
this.socialProfileLinkForm = this.fb.group({
social_profile: this.fb.array([], Validators.minLength(0))
});
this.candidateService.getAvailableSocialProfileList().subscribe((val: any) => {
this.socialProfileList = val.body;
});
我正在遍历html中的 socialProfileList 以产生表格
点击链接btn url字段,然后单击保存btn它将一个表单对象保存到该formArray