這次給大家帶來Ajax跨域請求不到cookie,解決Ajax跨域請求不到cookie的注意事項有哪些,下面就是實戰案例,一起來看一下。
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");
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是Ajax跨域請求不到cookie的詳細內容。更多資訊請關注PHP中文網其他相關文章!