如何在 ASP.NET MVC 中启用跨源请求

How to enable cross origin requests in ASP.NET MVC(如何在 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 中启用跨源请求的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

DispatcherQueue null when trying to update Ui property in ViewModel(尝试更新ViewModel中的Ui属性时DispatcherQueue为空)
Drawing over all windows on multiple monitors(在多个监视器上绘制所有窗口)
Programmatically show the desktop(以编程方式显示桌面)
c# Generic Setlt;Tgt; implementation to access objects by type(按类型访问对象的C#泛型集实现)
InvalidOperationException When using Context Injection in ASP.Net Core(在ASP.NET核心中使用上下文注入时发生InvalidOperationException)
LINQ many-to-many relationship, how to write a correct WHERE clause?(LINQ多对多关系,如何写一个正确的WHERE子句?)