上传较大文件时出现 CORS 错误

Mit*_*tch 5 http cors asp.net-web-api angularjs

我正在使用带有启用 CORS 的 c# web api 的 angular web 项目。

我的所有 CORS 在所有调用中都能正常工作,除非我将文件上传到异步任务。这是我所指的方法。

[HttpPost]
public async Task<HttpResponseMessage> UploadFile(){
    //code
}
Run Code Online (Sandbox Code Playgroud)

我得到的错误是:

请求的资源上不存在“Access-Control-Allow-Origin”标头。

所以显然我什至不允许调用我的 UploadFile 方法。

在小文件上,调用有效,响应中出现“Access-Control-Allow-Origin”,但在 60 mb + 的较大文件上则不然。

我正在使用 XMLHttpRequest 进行 web 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);
Run Code Online (Sandbox Code Playgroud)

在通过 xhr.send 发送文件之前,跨源资源共享请求是否可能超时?

小智 7

确保 web.config 中的 Max allowed content Length 设置得足够高,否则会出现错误。检查您的 IIS 日志以查看是否存在问题。

      <requestFiltering>
    <requestLimits maxAllowedContentLength="4294967295" />
    <!-- bytes -->
  </requestFiltering>
Run Code Online (Sandbox Code Playgroud)