Hello guys.
Where can I find the response received by the Server when the File was uploaded with success? ( Uploader Async Component )
Also how can I add things to the FormData send to the server?
beforeUpload(args: BeforeUploadEventArgs) {
args.customFormData = [{ 'name': 'Syncfusion INC' }];
}
Backend:
public async Task<IActionResult> UploadFilesAsync([FromForm]IList<IFormFile> uploadFiles, [FromForm] string name)
I don't receive nothing in the name propriety.
I tried something like this but nothing works, thanks!