Blame view

apps/common/create-api-client.js 1.18 KB
陈峰 authored
1 2
import axios from 'axios';
import config from 'config';
yyq authored
3
import {get} from 'lodash';
陈峰 authored
4 5 6 7 8 9 10 11

axios.defaults.baseURL = config.axiosBaseUrl;
axios.defaults.responseType = config.axiosResponseType;
axios.defaults.headers = {
  'X-Requested-With': 'XMLHttpRequest'
};

const errHandle = (error) => {
yyq authored
12 13
  let res = error.response;
陈峰 authored
14
  console.log(error);
yyq authored
15 16 17 18 19 20 21

  if (+res.status === 510) {
    if (get(res, 'data.data.refer')) {
      return window.location.href = get(res, 'data.data.refer');
    }
  }
陈峰 authored
22 23 24 25 26
  return Promise.reject({
    code: 500,
    message: '服务器开小差了~'
  });
};
yyq authored
27
陈峰 authored
28 29 30
const request = (options, store) => {
  return axios(options).then((res) => {
    if (res.data.code === 401) {
陈峰 authored
31
      store && store.commit('SET_NEED_LOGIN', {needLogin: true});
陈峰 authored
32 33 34 35 36 37 38 39 40 41 42 43 44
      return Promise.reject(res.data);
    }
    return res.data;
  }, errHandle);
};

export const createApi = (context, store) => {
  return {
    get(url, params, options) {
      return request(Object.assign({
        url,
        params,
        method: 'get',
陈峰 authored
45
      }, options), store);
陈峰 authored
46 47 48 49 50 51 52 53 54 55
    },
    post(url, data, options) {
      return request(Object.assign({
        url,
        data,
        method: 'post',
      }, options), store);
    }
  };
};