Ajax跨域请求COOKIE无法带上的完美解决办法
程序员文章站
2022-03-01 14:10:32
1、原生ajax请求方式:
1 var xhr = new xmlhttprequest();
2 xhr.open("post", "", true);&...
1、原生ajax请求方式:
1 var xhr = new xmlhttprequest();
2 xhr.open("post", "", true);
3 xhr.withcredentials = true; //支持跨域发送cookies
4 xhr.send();
2、jquery的ajax的post方法请求:
$.ajax({ type: "post", url: "http://xxx.com/api/test", datatype: 'json', // 允许携带证书 xhrfields: { withcredentials: true }, // 允许跨域 crossdomain: true, success:function(){ }, error:function(){ } })
3、服务器端设置:
header("access-control-allow-credentials: true"); header("access-control-allow-origin: http://www.xxx.com");
以上所述是小编给大家介绍的ajax跨域请求cookie无法带上的完美解决办法,希望对大家有所帮助