前端:
以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
});
服務(wù)器端:
以php為例:
代碼如下:
header("Access-Control-Allow-Credentials: true");
header('Access-Control-Allow-Origin: );
根據(jù)自己的情況而定
以上所述就是本文關(guān)于解決ajax跨域請求數(shù)據(jù)時(shí)cookie丟失的處理方案,希望大家能夠喜歡。
更多信息請查看IT技術(shù)專欄