从.net mvc api控制器下载角度应用程序中的文件时被CORS策略错误阻止

Posted

技术标签:

【中文标题】从.net mvc api控制器下载角度应用程序中的文件时被CORS策略错误阻止【英文标题】:Blocked by CORS policy error when downloading file in angular app from .net mvc api controller 【发布时间】:2020-03-25 21:15:00 【问题描述】:

我正在尝试从 Angular 8 应用程序从 asp.net web api 下载文件并收到 CORS 错误。我的 web api 的所有控制器都启用了 CORS。如果我不返回流,那么它工作正常,当 api 返回流时开始抛出 CORS 错误。

API 代码:-

    var stream = new MemoryStream(pck.GetAsByteArray());
    stream.Flush();
    stream.Position = 0;

    response.ClearContent();
    response.Clear();
    response.Buffer = true;
    response.Charset = "";
    response.Cache.SetCacheability(HttpCacheability.NoCache);
    response.AddHeader("content-disposition", "attachment; filename=" + filename);
    response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";

    var data = new byte[stream.Length];
    stream.Read(data, 0, data.Length);
    stream.Close();
    response.BinaryWrite(data);
    response.Flush();
    response.End();

角码:-

let options = new RequestOptions(responseType: ResponseContentType.Blob, headers );
this.http.get(url,  observe: 'response', responseType: 'blob' ).subscribe((response)=>
const blob = new Blob([response.body],
 type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' );
const file = new File([blob], 'reports.xlxs',
 type: 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet' );
saveAs(file);
);

只要调用 subscribe,我就会开始出现以下错误。当我调试它时,它会执行 api 的所有代码并返回以下错误。

错误:- 从源“http://localhost:4200”访问“http://localhost:19119//offers/42428/export/orderDetails”处的 XMLHttpRequest 已被 CORS 策略阻止:请求的资源上不存在“Access-Control-Allow-Origin”标头。

谢谢

【问题讨论】:

【参考方案1】:

看来您应该在 asp.net 应用中启用 CORS。这是服务器端错误。

在 Visual Studio 中,从工具菜单中选择 NuGet 包管理器,然后选择包管理器控制台。在包管理器控制台窗口中,键入以下命令:

Install-Package Microsoft.AspNet.WebApi.Cors

有关如何在 Web API 中启用 CORS 的更多信息,请参阅以下链接:

Enable cross-origin requests in ASP.NET Web API 2

【讨论】:

【参考方案2】:

将下面的代码行添加到 HttpResponse 解决了我的问题。

response.AddHeader("Access-Control-Allow-Origin", "*");

【讨论】:

以上是关于从.net mvc api控制器下载角度应用程序中的文件时被CORS策略错误阻止的主要内容,如果未能解决你的问题,请参考以下文章

ASP.NET MVC API 或 WCF API

ASP.NET Web API 从 MVC 4 控制器失败

从 MVC 到使用 ASP.NET Core 6.0 的Minimal API

如何使用 ASP.NET MVC Rest API 调用和 jQuery Ajax 下载文件

如何在 Asp.net MVC 中添加 Web Api,然后在同一个应用程序中使用 WebAPI

ASP.NET MVC:返回纯文本文件以从控制器方法下载