Blame view

apps/common/create-api-client.js 1007 Bytes
陈峰 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
import axios from 'axios';
import config from 'config';

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

const errHandle = (error) => {
  console.log(error);
  return Promise.reject({
    code: 500,
    message: '服务器开小差了~'
  });
};
const request = (options, store) => {
  return axios(options).then((res) => {
    if (res.data.code === 401) {
陈峰 authored
20
      store && store.commit('SET_NEED_LOGIN', {needLogin: true});
陈峰 authored
21 22 23 24 25 26 27 28 29 30 31 32 33
      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
34
      }, options), store);
陈峰 authored
35 36 37 38 39 40 41 42 43 44
    },
    post(url, data, options) {
      return request(Object.assign({
        url,
        data,
        method: 'post',
      }, options), store);
    }
  };
};