http跨域访问

Posted xuelei被占用了

tags:

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

if (Request.Headers.Get("Origin") != null) {
filterContext.HttpContext.Response.AddHeader("Access-Control-Allow-Origin",Request.Headers.Get("Origin"));
filterContext.HttpContext.Response.AddHeader("Access-Control-Allow-Credentials", "true");
}

加入两个header 第一个Origin 表示允许跨域访问的host

第二个设置为ture 表示允许cookie转发

$.ajax({url:‘http://localhost:5501/user/login?userinput=13068852262&pwd=xuelei‘,xhrFields: {
withCredentials: true
},success:function(data){console.log(data)}})

 

xhrFields的属性withCredentials设置为true 设置cookie转发 

如果不需要转发cookie此项可不设置 header中的第二项也可以不设置 

 


{readyState: 1, getResponseHeader: ?, getAllResponseHeaders: ?, setRequestHeader: ?, overrideMimeType: ?, …}
VM5932:3 {
"state": "success",
"content": "ok",
"total": 0
}

 

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

跨域HTTP访问控制(CORS)

http跨域访问

什么是跨域

跨域访问

System.Web.Http.Cors配置跨域访问的两种方式

笔记什么是跨域请求/访问?