WebApi表头设置跨域

Posted 积少成多

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WebApi表头设置跨域相关的知识,希望对你有一定的参考价值。

    public static class WebApiConfig
    {
        public static void Register(HttpConfiguration config)
        {
            var setting = System.Configuration.ConfigurationManager.AppSettings;
            var cors = new EnableCorsAttribute("http://192.168.3.15:3000,http://192.168.3.15:3002", "*", "GET,POST,PUT,DELETE,OPTIONS")
            {
                SupportsCredentials = true
            };
            config.EnableCors(cors);

            // Web API 路由
            config.MapHttpAttributeRoutes();

            config.Routes.MapHttpRoute(
                name: "DefaultApi",
                routeTemplate: "api/{controller}/",
                defaults: new { id = RouteParameter.Optional }, constraints: new { id = @"\d+" }
            );
        }
    }

或者 但在config不可以配置多个ip地址

  <system.webServer>
    <httpProtocol>
      <customHeaders>
        <add name="Access-Control-Allow-Origin" value="http://192.168.6.43:3000" />
         <add name="Access-Control-Allow-Headers" value="x-requested-with,content-type" />
        <add name="Access-Control-Allow-Method" value="GET,POST,OPTIONS" />
        <add name="Access-Control-Allow-Credentials" value="true" />
      </customHeaders>
    </httpProtocol>
  </system.webServer>

 

以上是关于WebApi表头设置跨域的主要内容,如果未能解决你的问题,请参考以下文章

WebAPI跨域设置

webapi跨域使用session

使用Cors后台设置WebAPI接口跨域访问

跨域调用WebApi

WebApi跨域问题

跨域调用webapi web端跨域调用webapi