he wei
2024-12-23 6a4a27022809f9647c781d8135ac8afc3fb7c393
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;