12345678910111213141516171819202122232425262728293031323334353637383940 |
- import axios from "axios";
- // 创建实例
- // Set config defaults when creating the instance
- const instance = axios.create({
- // baseURL: 'https://official.webapi.bicredit.xin/api/',
- // http://api.crm.meloinfo.com/collect/sendSms
- timeout: 2500,
- });
- // 添加请求拦截器
- instance.interceptors.request.use((config) => {
- // 在发送请求之前做些什么
- console.log('config', config);
- return config;
- }, function (error) {
- // 对请求错误做些什么
- return Promise.reject(error);
- });
- // 添加响应拦截器
- instance.interceptors.response.use((response) => {
- // 对响应数据做点什么
- console.log('response', response);
- // const {
- // config,
- // data,
- // headers,
- // request,
- // status,
- // statusText
- // } = response
- return response;
- }, function (error) {
- // 对响应错误做点什么
- return Promise.reject(error);
- });
- export default instance
|