ajax前置处理实现异步请求session过期时跳转登录页面
function checkLogin(json) {
if (typeof(json) === 'string' && ~json.indexOf('<!DOCTYPE html>')) {
window.location.href = $('base').attr('href') + 'auth/login'
}
}
2021-08-24 01:17:52
ajax前置处理实现异步请求session过期时跳转登录页面
function checkLogin(json) {
if (typeof(json) === 'string' && ~json.indexOf('<!DOCTYPE html>')) {
window.location.href = $('base').attr('href') + 'auth/login'
}
}