//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 jquery ajax的全局设置token
最新推荐文章于 2022-03-07 16:52:38 发布