Last active
December 14, 2018 13:29
-
-
Save plcosta/00b498bd83ee42dd31798f0335207c8a to your computer and use it in GitHub Desktop.
Axios Config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict' | |
import Vue from 'vue' | |
import axios from 'axios' | |
// Full config: https://github.com/axios/axios#request-config | |
// axios.defaults.baseURL = process.env.baseURL || process.env.apiUrl || ''; | |
// axios.defaults.headers.common['Authorization'] = AUTH_TOKEN; | |
// axios.defaults.headers.post['Content-Type'] = 'application/x-www-form-urlencoded'; | |
let config = { | |
baseURL: API_URL | |
// timeout: 60 * 1000, // Timeout | |
// withCredentials: true, // Check cross-site Access-Control | |
} | |
const _axios = axios.create(config) | |
_axios.interceptors.request.use( | |
function (config) { | |
// Do something before request is sent | |
return config | |
}, | |
function (error) { | |
// Do something with request error | |
return Promise.reject(error) | |
} | |
) | |
// Add a response interceptor | |
_axios.interceptors.response.use( | |
function (response) { | |
// Do something with response data | |
return response | |
}, | |
function (error) { | |
// Do something with response error | |
return Promise.reject(error) | |
} | |
) | |
Plugin.install = function (Vue, options) { | |
Vue.axios = _axios | |
window.axios = _axios | |
Object.defineProperties(Vue.prototype, { | |
axios: { | |
get () { | |
return _axios | |
} | |
}, | |
$axios: { | |
get () { | |
return _axios | |
} | |
} | |
}) | |
} | |
Vue.use(Plugin) | |
export default Plugin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict' | |
import axios from 'axios' | |
import store from '@src/store' | |
const API_URL = process.env.VUE_APP_API_BASE_URL ? process.env.VUE_APP_API_BASE_URL : '/api/v1' | |
let config = { | |
baseURL: API_URL, | |
timeout: 60 * 1000 // Timeout | |
// withCredentials: true, // Check cross-site Access-Control | |
} | |
const http = axios.create(config) | |
http.interceptors.request.use( | |
function (config) { | |
// Do something before request is sent | |
return config | |
}, | |
function (error) { | |
// Do something with request error | |
return Promise.reject(error) | |
} | |
) | |
// Add a response interceptor | |
http.interceptors.response.use( | |
function (response) { | |
// Do something with response data | |
return response | |
}, | |
function (error) { | |
// Do something with response error | |
return Promise.reject(error) | |
} | |
) | |
export default http |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment