ng-file-upload未在Content-Disposition中将文件大小发送到ASP.NET Web Api 2

时间:2015-03-09 09:12:21

标签: angularjs file-upload asp.net-web-api directive

我正在使用danialfarid / ng-file-upload将AngularJS中的文件上传到Web Api 2.

我正在尝试验证fileSize服务器端。 ASP.NET Web Api有

headers.ContentDisposition.Size

但是ng-file-upload没有发送大小。它发送:

Content-Disposition: form-data; name="file"; filename="foo.jpg"

如何让ng-file-upload发送上传文件的大小,以便我可以在ASP.NET Web Api中验证它?

$upload.upload({
    url: url,
    method: 'PUT',
    file: file
}).success(function (data, status, headers, config) {
    // ...
});

0 个答案:

没有答案