How to enable cross origin requests in ASP.NET MVC(如何在 ASP.NET MVC 中启用跨源请求)
问题描述
我正在尝试创建一个适用于 MVC 5 中的跨域请求 (CORS) 的 Web 应用程序.我已经尝试了所有方法,但没有任何结果.
I am trying to create a web application which works with cross-origin requests (CORS) in MVC 5. I have tried everything without any result.
带有属性
public class AllowCrossSiteJsonAttribute: ActionFilterAttribute
{
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
filterContext.RequestContext.HttpContext.Response.AddHeader("Access-Control-Allow-Origin", "*");
base.OnActionExecuting(filterContext);
}
}
带有 EnableCors 属性
[EnableCors("*")]
没有任何效果我开始认为这是不可能的
Nothing works I'm starting to think that it is impossible
推荐答案
要启用跨域请求,请将 [EnableCors]
属性添加到您的 Web API 控制器或控制器方法:
To enable cross-origin requests, add the [EnableCors]
attribute to your Web API controller or controller method:
[EnableCors(origins: "http://systematixindia.com", headers: "*", methods: "*")]
public class TestController : ApiController
{
// Controller method`enter code here`s not shown...
}
阅读更多
这篇关于如何在 ASP.NET MVC 中启用跨源请求的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 ASP.NET MVC 中启用跨源请求


- C# 中多线程网络服务器的模式 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 输入按键事件处理程序 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01