This page was saved using WebZIP 7.0.3.1030 offline browser on 12/02/19 14:55:01.
Address: http://www.zhufengpeixun.cn/ahead/html/66-8.axios-apply.html
Title: 珠峰架构师成长计划  •  Size: 18298  •  Last Modified: Sun, 01 Dec 2019 11:37:10 GMT

ajax请求 #

封装ajaxRequest

import axios from 'axios';
let baseUrl = process.env.NODE_ENV !== 'production'?'http://localhost:8080':'/';
class AjaxRequest{
    constructor(){
        this.baseURL = baseUrl; // 配置默认路径
    }
    request(config){
        // 创建一个axios实例
        let instance = axios.create();
        // axios(config);
        config = {baseURL:this.baseURL,...config};
        return instance(config);
    }
}
export default new AjaxRequest();