上传较大文件时出现 CORS 错误
CORS error when uploading larger files
我正在使用一个 angular web 项目和启用了 CORS 的 c# web api。
除了我将文件上传到异步任务时,我的所有 CORS 在所有调用中都能正常工作。这是我指的方法。
[HttpPost]
public async Task<HttpResponseMessage> UploadFile(){
//code
}
我得到的错误是:
请求的资源上没有 'Access-Control-Allow-Origin' header。
所以显然我什至不被允许调用我的 UploadFile 方法。
在小文件上调用有效,响应中出现 'Access-Control-Allow-Origin',但在 60 MB 以上的大文件上则无效。
我正在使用 XMLHttpRequest 进行网络 api 调用。
var xhr = new XMLHttpRequest();
if (xhr.upload) {
xhr.upload.filename = $scope.files[i].name;
xhr.upload.addEventListener('progress', function (evt) {
var percentComplete = Math.round(evt.loaded * 100 / evt.total);
$scope.uploadCompleteValues[this.filename] = percentComplete;
console.log(percentComplete + '%');
if (!$scope.$$phase) { $scope.$apply(); }
}, false);
}
xhr.onreadystatechange = function (ev) {
if (xhr.readyState === 4) {
if (xhr.status === 200) {
// Success! Response is in xhr.responseText
console.log('success upload of file');
}
} else {
// Error! Look in xhr.statusText
console.log('failed to upload file');
console.log('error : ', xhr.statusText);
$scope.$root.$broadcast('NOTIFY-ERROR-1btn', {
text: 'Artwork failed to save. ',
buttons: [
{
text: 'Ok'
}
]
});
}
}
}
xhr.open('POST', webapiUrl + 'artwork/UploadFile', true);
var cookie = $cookieStore.get('authToken');
if (cookie) {
xhr.setRequestHeader("auth-token", cookie.token);
} else {
$location.path('login');
}
var data = new FormData();
data.append('OrderlineId', $scope.orderline.Id);
data.append($scope.files[i].name + 1, $scope.files[i]);
xhr.send(data);
在通过 xhr.send 发送文件之前跨源资源共享请求是否可能超时?
确保 web.config 中的最大允许内容长度设置得足够高,否则会出现错误。检查您的 IIS 日志,看看是否是问题所在。
<requestFiltering>
<requestLimits maxAllowedContentLength="4294967295" />
<!-- bytes -->
</requestFiltering>
我正在使用一个 angular web 项目和启用了 CORS 的 c# web api。
除了我将文件上传到异步任务时,我的所有 CORS 在所有调用中都能正常工作。这是我指的方法。
[HttpPost]
public async Task<HttpResponseMessage> UploadFile(){
//code
}
我得到的错误是:
请求的资源上没有 'Access-Control-Allow-Origin' header。
所以显然我什至不被允许调用我的 UploadFile 方法。
在小文件上调用有效,响应中出现 'Access-Control-Allow-Origin',但在 60 MB 以上的大文件上则无效。
我正在使用 XMLHttpRequest 进行网络 api 调用。
var xhr = new XMLHttpRequest();
if (xhr.upload) {
xhr.upload.filename = $scope.files[i].name;
xhr.upload.addEventListener('progress', function (evt) {
var percentComplete = Math.round(evt.loaded * 100 / evt.total);
$scope.uploadCompleteValues[this.filename] = percentComplete;
console.log(percentComplete + '%');
if (!$scope.$$phase) { $scope.$apply(); }
}, false);
}
xhr.onreadystatechange = function (ev) {
if (xhr.readyState === 4) {
if (xhr.status === 200) {
// Success! Response is in xhr.responseText
console.log('success upload of file');
}
} else {
// Error! Look in xhr.statusText
console.log('failed to upload file');
console.log('error : ', xhr.statusText);
$scope.$root.$broadcast('NOTIFY-ERROR-1btn', {
text: 'Artwork failed to save. ',
buttons: [
{
text: 'Ok'
}
]
});
}
}
}
xhr.open('POST', webapiUrl + 'artwork/UploadFile', true);
var cookie = $cookieStore.get('authToken');
if (cookie) {
xhr.setRequestHeader("auth-token", cookie.token);
} else {
$location.path('login');
}
var data = new FormData();
data.append('OrderlineId', $scope.orderline.Id);
data.append($scope.files[i].name + 1, $scope.files[i]);
xhr.send(data);
在通过 xhr.send 发送文件之前跨源资源共享请求是否可能超时?
确保 web.config 中的最大允许内容长度设置得足够高,否则会出现错误。检查您的 IIS 日志,看看是否是问题所在。
<requestFiltering>
<requestLimits maxAllowedContentLength="4294967295" />
<!-- bytes -->
</requestFiltering>