DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> AJAX入門 >> AJAX基礎知識 >> Ajax跨域訪問Cookie丟失問題的解決方法
Ajax跨域訪問Cookie丟失問題的解決方法
編輯:AJAX基礎知識     

ajax跨域訪問,可以使用jsonp方法或設置Access-Control-Allow-Origin實現,關於設置Access-Control-Allow-Origin實現跨域訪問可以參考之前我寫的文章《ajax 設置Access-Control-Allow-Origin實現跨域訪問》

1.ajax跨域訪問,cookie丟失

首先創建兩個測試域名

a.fdipzone.com 作為客戶端域名

b.fdipzone.com 作為服務端域名

測試代碼

setcookie.PHP 用於設置服務端cookie

<?php
setcookie('data', time(), time()+3600);
?>

server.php 用於被客戶端請求

<?php
$name = isset($_POST['name'])? $_POST['name'] : '';
$ret = array(
 'success' => true,
 'name' => $name,
 'cookie' => isset($_COOKIE['data'])? $_COOKIE['data'] : ''
);
// 指定允許其他域名訪問
header('Access-Control-Allow-Origin:http://a.fdipzone.com');
// 響應類型
header('Access-Control-Allow-Methods:POST'); 
// 響應頭設置
header('Access-Control-Allow-Headers:x-requested-with,content-type');
header('content-type:application/json');
echo json_encode($ret);
?>

test.html 客戶端請求頁面

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
 <meta http-equiv="content-type" content="text/html;charset=utf-8">
 <script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
 <title> ajax 跨域訪問cookie丟失的解決方法 </title>
 </head>
 <body>
 <script type="text/javascript">
 $(function(){
  $.ajax({
   url: 'http://b.fdipzone.com/server.php', // 跨域
   dataType: 'json',
   type: 'post',
   data: {'name':'fdipzone'},
   success:function(ret){
    if(ret['success']==true){
     alert('cookie:' + ret['cookie']);
    }
   }
  });
 })
 </script>
 </body>
</html>

首先先執行http://b.fdipzone.com/setcookie.php, 創建服務端cookie。

然後執行http://a.fdipzone.com/test.html

輸出

{"success":true,"name":"fdipzone","cookie":""}

獲取cookie失敗。

2.解決方法

客戶端

請求時將withCredentials屬性設置為true

使可以指定某個請求應該發送憑據。如果服務器接收帶憑據的請求,會用下面的HTTP頭部來響應。

服務端

設置header

header("Access-Control-Allow-Credentials:true");

允許請求帶有驗證信息

test.html 修改如下

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
 <meta http-equiv="content-type" content="text/html;charset=utf-8">
 <script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
 <title> ajax 跨域訪問cookie丟失的解決方法 </title>
 </head>
 <body>
 <script type="text/javascript">
 $(function(){
  $.ajax({
   url: 'http://b.fdipzone.com/server.php', // 跨域
   xhrFields:{withCredentials: true}, // 發送憑據
   dataType: 'json',
   type: 'post',
   data: {'name':'fdipzone'},
   success:function(ret){
    if(ret['success']==true){
     alert('cookie:' + ret['cookie']);
    }
   }
  });
 })
 </script>
 </body>
</html>

server.php 修改如下

<?php
$name = isset($_POST['name'])? $_POST['name'] : '';
$ret = array(
 'success' => true,
 'name' => $name,
 'cookie' => isset($_COOKIE['data'])? $_COOKIE['data'] : ''
);
// 指定允許其他域名訪問
header('Access-Control-Allow-Origin:http://a.fdipzone.com');
// 響應類型
header('Access-Control-Allow-Methods:POST'); 
// 響應頭設置
header('Access-Control-Allow-Headers:x-requested-with,content-type');
// 是否允許請求帶有驗證信息
header('Access-Control-Allow-Credentials:true');
header('content-type:application/json');
echo json_encode($ret);
?>

按之前步驟執行,請求返回

{"success":true,"name":"fdipzone","cookie":"1484558863"}

獲取cookie成功

3.注意事項

1.如果客戶端設置了withCredentials屬性設置為true,而服務端沒有設置Access-Control-Allow-Credentials:true,請求時會返回錯誤。

XMLHttpRequest cannot load http://b.fdipzone.com/server.php. Credentials flag is 'true', but the 'Access-Control-Allow-Credentials' header is ''. It must be 'true' to allow credentials. Origin 'http://a.fdipzone.com' is therefore not allowed access.

2.服務端header設置Access-Control-Allow-Credentials:true後,Access-Control-Allow-Origin不可以設為*,必須設置為一個域名,否則回返回錯誤。

XMLHttpRequest cannot load http://b.fdipzone.com/server.php. A wildcard '*' cannot be used in the 'Access-Control-Allow-Origin' heade

下面看下Ajax跨域請求COOKIE無法帶上的解決辦法

原生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({
    type: "POST",
    url: "http://xxx.com/api/test",
    dataType: 'jsonp',
    xhrFields: {
      withCredentials: true
    },
   crossDomain: true,
   success:function(){
  },
   error:function(){
 }
})

服務器端設置:

header("Access-Control-Allow-Credentials: true");
header("Access-Control-Allow-Origin: http://www.xxx.com");

以上所述是小編給大家介紹的Ajax跨域訪問Cookie丟失問題的解決方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對網站的支持!

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved