码迷,mamicode.com
首页 > Web开发 > 详细

利用ajax全局设置实现拦截器

时间:2018-12-07 12:11:57      阅读:316      评论:0      收藏:0      [点我收藏+]

标签:res   登录页面   complete   header   function   var   oca   全局   ajax   

var token = localStorage.getItem("token");

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

  

利用ajax全局设置实现拦截器

标签:res   登录页面   complete   header   function   var   oca   全局   ajax   

原文地址:https://www.cnblogs.com/randomlee/p/10080896.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!