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无法带上的解决办法的主要内容,如果未能解决你的问题,请参考以下文章

Ajax 跨域请求 Cookie 无法携带/保存的解决办法

jQuery跨域请求带Cookie和Session的方法

egg.js 跨域 设置cookie

ajax 跨域无法携带cookie 解决办法

Ajax跨域请求携带cookie问题

跨域请求传递Cookie问题