he wei
2023-02-10 5a3753b8a6fbb346510c20436cb9733dd137e1e5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import axios from 'axios';
 
axios.defaults.baseURL = 'http://localhost:8099/fbx/test/';
axios.defaults.withCredentials = true;  // 保持请求头
 
 
// 添加响应拦截器
axios.interceptors.response.use(function (response) {
    // 对响应数据做点什么
    return response;
}, function (error) {
    return Promise.reject(error);
});
 
export default axios;