I have a javascript array which looks like this:
var items = [{
ID: "1"
count:'1',
File: (binary file)
},
{
ID: "2"
count:'2',
File: (binary file)
}
]
I want to get the file input in the backend hence I have to use multipart + formData but I couldnt find a way to convert the list into it. May I know how can I achieve this? Thanks in Advance.