封装axios请求的函数

import axios from "axios";
import config from "../config/config";

export default function axiosHttp(api, params, methods = "POST",url=false) {
    var authorization = window.sessionStorage.getItem("authorization") || "";
    // let loading = document.getElementById('ajaxLoading');
    // loading.style.display = 'block';
    return new Promise((resolve, reject) => {
        axios({
            method: methods,
            url:config.baseUrl+api,
            data: params,
            timeout:12*1000,
            withCredentials: true,
            headers: {
                "Authorization": "bearer " + authorization,
                // "Content-Type": 'application/x-www-form-urlencoded'
                "Content-Type": 'application/json'
            }
        }).then(res => {
            // console.log(50,res);
            // loading.style.display = 'none';
            if (res.data.code === 403) {
                // console.log("我允许了啊");
                window.sessionStorage.clear();
                // window.localStorage.clear();
                window.location.href = '/'
            }
            resolve(res.data);
        }).catch(err => {
            console.log(54,err);
            // loading.style.display = 'none';
            reject(err);
        });
    })
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值