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 中启用跨源请求
基础教程推荐
- 重新排序 WPF TabControl 中的选项卡 2022-01-01
- SonarQube C# 分析失败“不是指针的有效行偏移" 2022-01-01
- 在 VB6 或经典 ASP 中使用 .NET 2022-01-01
- 将数据集转换为列表 2022-01-01
- 从 C# 控制相机设备 2022-01-01
- 如果条件可以为空 2022-01-01
- 更新 Visual Studio 中的 DataSet 结构以匹配新的 SQL 数据库结构 2022-01-01
- Mono https webrequest 失败并显示“身份验证或解密失败" 2022-01-01
- 获取C#保存对话框的文件路径 2022-01-01
- C# 9 新特性——record的相关总结 2023-04-03
