ajaxSetup全局配置,发送前和接收响应后

        $.ajaxSetup({
            //在请求发送之前执行,将token发送过去
            beforeSend(xhr,setting){
                let token = localStorage.getItem("token");
                xhr.setRequestHeader("x-access-token",token);
            },
            //在请求完成响应返回时执行
            complete(xhr, setting) {
                if (xhr.responseJSON.code === 401) {
                    alert(xhr.responseJSON.message);
                    router.go('/index');
                }
            }
        })
上一篇:3月25随笔--使用zTree自动生成树形结构图


下一篇:我的第一个html