shiro ajax请求session失效,返回登陆页面

$.ajaxSetup({
	dataFilter: function(response) {
		if (response.indexOf('loginBox') !== -1) {
			window.location.href = ctx + '/login';
			return "";
		} else {
			return response;
		}
	}
});



你可能感兴趣的:(shiro ajax请求session失效,返回登陆页面)