前端:
以jquery為例:
需要加入
復制代碼 代碼如下:
xhrFields: {
withCredentials: true
},
crossDomain: true,
$.ajax({
type: postType,
url: url,
data: postData || '',
xhrFields: {
withCredentials: true
},
crossDomain: true,
success: function () {
successCallback.apply(scope || this, arguments);
},
failureCallback: function () {
failureCallback.apply(scope || this, arguments);
},
dataType: dataType
});
服務器端:
以php為例:
復制代碼 代碼如下:
header("Access-Control-Allow-Credentials: true");
header('Access-Control-Allow-Origin: http://m.z.com');
根據自己的情況而定
以上所述就是本文關於解決ajax跨域請求數據時cookie丟失的處理方案,希望大家能夠喜歡。