Closed fengzhihenxs closed 4 years ago
There are no files in the files object
Hi @fengzhihenxs
This repository is for bug reports only. Please open a support ticket for assistance with implementing specific scenarios or configuration.
Has been resolved, thank you
Using the latest version of the upload on the angular9 project, when I upload a file, I can request the api interface of the server, but I cannot receive the uploaded file collection, but the previous lower version upload is OK, why?
Code show as below Client: html : <kendo-upload [saveUrl]="uploadSaveUrl">
ts: uploadSaveUrl = '/api/upload';
Server: [HttpPost] public IHttpActionResult upload() { try { HttpFileCollection files = HttpContext.Current.Request.Files;