1、原生ajax請求方式:
1 var xhr = new XMLHttpRequest();
2 xhr.open("POST", "http://xxxx.com/demo/b/index.php", 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無法帶上的完美解決辦法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對網站的支持!