admin管理员组文章数量:1310662
I have this reactive form which contains an array of Formgroups. And in the field of these formgroups, there are form controls which I intend to have file uploads. Is this possible? I have seen file uploads for reactive forms using the FormData web API but it's mostly for single file uploads. Or is this still possible using FormData web API? Ideally, I would want to send a POST request to the backend in JSON form.
Reactive Form Value:
formGroupArray = [
{
"formgroupOne": {
fileUploadOne: "",
fileUploadTwo: "",
}
},
{
"formgroupTwo": {
fileUploadOne: "",
fileUploadTwo: "",
}
},
];
本文标签: typescriptAngular Reactive Form File UploadStack Overflow
版权声明:本文标题:typescript - Angular Reactive Form File Upload - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741853326a2401195.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论