如何在 ASP.NET MVC 中启用跨源请求 [英] How to enable cross origin requests in ASP.NET MVC

查看:25
本文介绍了如何在 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 中启用跨源请求的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆