easyui jquery ajax的全局设置token



//jquery全局配置
$.ajaxSetup({
dataType: "json",
cache: false,
headers: {
"token": token
},
// xhrFields: {
// withCredentials: true
// },
complete: function(xhr) {
//token过期,则跳转到登录页面
if(xhr.responseJSON.code == 401){
parent.location.href = base.url.appname + 'login.html';
}
}
});


你可能感兴趣的:(easyui)