This is my Angular service:
uploadFiles(formData: FormData) {
const headerOptions = {
headers: new HttpHeaders({
'X-CSRF-TOKEN': token
})
};
return this.httpClient
.post<string>(`${this.configurationService.apiUrl}/cancellationforms/upload`, formData, headerOptions);
}
for (let file in this.supportDocuments) {
// file is a blob object
formData.append("files", file);
}
this.uploadService.uploadFiles(formData)
ASP.NET Core Web API endpoint:
routeBuilder.MapPost("api/cancellationforms/upload", ([FromForm] List<IFormFile> files, [FromServices] IServiceManager serviceManager, CancellationToken cancellationToken) =>
{
return Results.Ok("Hello");
})
.WithName("CreateCancellationFormUpload")
.WithOpenApi();
The files from the endpoints are always null, if I use List
. If I remove List
, it will have the value of the latest blob object that I append in the UI.
Can anyone tell me what I am missing?
Thank you
This is my Angular service:
uploadFiles(formData: FormData) {
const headerOptions = {
headers: new HttpHeaders({
'X-CSRF-TOKEN': token
})
};
return this.httpClient
.post<string>(`${this.configurationService.apiUrl}/cancellationforms/upload`, formData, headerOptions);
}
for (let file in this.supportDocuments) {
// file is a blob object
formData.append("files", file);
}
this.uploadService.uploadFiles(formData)
ASP.NET Core Web API endpoint:
routeBuilder.MapPost("api/cancellationforms/upload", ([FromForm] List<IFormFile> files, [FromServices] IServiceManager serviceManager, CancellationToken cancellationToken) =>
{
return Results.Ok("Hello");
})
.WithName("CreateCancellationFormUpload")
.WithOpenApi();
The files from the endpoints are always null, if I use List
. If I remove List
, it will have the value of the latest blob object that I append in the UI.
Can anyone tell me what I am missing?
Thank you
Share Improve this question edited Apr 2 at 4:13 marc_s 756k184 gold badges1.4k silver badges1.5k bronze badges asked Apr 2 at 1:25 Hoang MinhHoang Minh 1,2622 gold badges24 silver badges49 bronze badges 4 |2 Answers
Reset to default 2I got it working. There are two things that I was missing:
- Thanks to @Tiny Wang: the for loop has to be used with
of
and notin
.
.ts
//
for (let file of this.supportDocuments) {
// file is a blob object
formData.append("files", file);
}
this.uploadService.uploadFiles(formData)
- @Yong Sun suggested to use IFormFileCollection and it works, not sure why List does not, even though it is documented on Microsoft page.
routeBuilder.MapPost("api/cancellationforms/upload",
(IFormFileCollection files,
[FromServices] IServiceManager serviceManager,
CancellationToken cancellationToken) =>
{
// Iterate each file if needed
foreach (IFormFile file in files)
{
}
return Results.Ok("Hello");
})
You may try working with IFormFileCollection
instead of List<IFormFile>
type and without the [FromForm]
attribute.
routeBuilder.MapPost("api/cancellationforms/upload",
(IFormFileCollection files,
[FromServices] IServiceManager serviceManager,
CancellationToken cancellationToken) =>
{
// Iterate each file if needed
foreach (IFormFile file in files)
{
}
return Results.Ok("Hello");
})
List<IFormFile>
is correct accept several files. See this document, and I find this case which said in document that "code in the loop should be for(let file of item) instead of for(let file in item) to loop the values of files". Could you pls try it? – Tiny Wang Commented Apr 2 at 1:59for (let file of this.supportDocuments) {formData.append("files", file, file.name);}
? – Tiny Wang Commented Apr 2 at 2:15IFormFileCollection
instead ofList<IFormFile>
? – Yong Shun Commented Apr 2 at 2:55formData.append("files", file, file.name);
? AsIFormFileCollection
binds to all files in the form, even if they’re sent under different or multiple form field names (e.g., name="file", name="uploads", or name="files"). But if you usedformData.append("files", file, file.name);
List should work. @HoangMinh – Tiny Wang Commented Apr 2 at 4:12