DEV Community

Salah Hasanin
Salah Hasanin

Posted on

Answer: Send Array in Multipart/formdata in angular 7

you are using sabhaArray directly. You need to get value of the array.

try this:

`fd.append("sabha_details", JSON.stringify(this.registerForm.get("sabhaArray").value));`

Top comments (0)