Ajax跨域请求COOKIE无法带上的解决办法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ajax跨域请求COOKIE无法带上的解决办法相关的知识,希望对你有一定的参考价值。
本文参考https://stackoverflow.com/questions/12840410/how-to-get-a-cookie-from-an-ajax-response
原生ajax请求方式:
var xhr = new XMLHttpRequest(); xhr.open("POST", "http://xxxx.com/demo/b/index.php", true); xhr.withCredentials = true; //支持跨域发送cookies xhr.send();
jquery的ajax的post方法请求:
$.ajax("https://example.com/v2/whatever", { method: ‘GET‘, xhrFields: { withCredentials: true }, crossDomain: true, success: function(response){}, error: function(){} });
服务器端设置:
header("Access-Control-Allow-Credentials: true");
header("Access-Control-Allow-Origin: http://www.xxx.com");
技术交流QQ群:15129679
以上是关于Ajax跨域请求COOKIE无法带上的解决办法的主要内容,如果未能解决你的问题,请参考以下文章