码迷,mamicode.com
首页 > Web开发 > 详细

Ajax跨域请求COOKIE无法带上的解决办法

时间:2017-07-12 15:28:12      阅读:312      评论:0      收藏:0      [点我收藏+]

标签:解决办法   dex   blog   access   ajax跨域   function   request   post方法   error:   

本文参考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无法带上的解决办法

标签:解决办法   dex   blog   access   ajax跨域   function   request   post方法   error:   

原文地址:http://www.cnblogs.com/yeminglong/p/7155024.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!