這篇文章主要介紹了Ajax跨域請求COOKIE無法帶上的解決辦法,對ajax有興趣的朋友可以參考下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");
以上所述是小編給大家介紹的Ajax跨域請求COOKIE無法帶上的完美解決辦法,希望對大家有幫助! !
相關推薦:
以上是Ajax跨域請求COOKIE無法帶上的完美解決方案的詳細內容。更多資訊請關注PHP中文網其他相關文章!