mirror of
https://github.com/sunniejs/vue-h5-template.git
synced 2025-04-06 03:57:50 +08:00
73 lines
1.7 KiB
TypeScript
73 lines
1.7 KiB
TypeScript
import { useAxios } from '@vueuse/integrations/useAxios';
|
|
import axios, { AxiosRequestConfig } from 'axios';
|
|
import { Toast } from 'vant/lib/toast';
|
|
|
|
// create an axios instance
|
|
const instance = axios.create({
|
|
withCredentials: false,
|
|
timeout: 5000,
|
|
});
|
|
|
|
// request interceptor
|
|
instance.interceptors.request.use(
|
|
(config) => {
|
|
// do something before request is sent
|
|
// const token = store.state.user.token;
|
|
|
|
// if (token) {
|
|
// // let each request carry token
|
|
// config.headers = {
|
|
// ...config.headers,
|
|
// Authorization: `Bearer ${token}`
|
|
// };
|
|
// }
|
|
return config;
|
|
},
|
|
(error) => {
|
|
// do something with request error
|
|
console.log(error); // for debug
|
|
return Promise.reject(error);
|
|
},
|
|
);
|
|
|
|
// response interceptor
|
|
instance.interceptors.response.use(
|
|
/**
|
|
* If you want to get http information such as headers or status
|
|
* Please return response => response
|
|
*/
|
|
|
|
/**
|
|
* Determine the request status by custom code
|
|
* Here is just an example
|
|
* You can also judge the status by HTTP Status Code
|
|
*/
|
|
(response) => {
|
|
const res = response.data;
|
|
// if the custom code is not 200, it is judged as an error.
|
|
if (res.code !== 200) {
|
|
Toast(res.msg);
|
|
// 412: Token expired;
|
|
if (res.code === 412) {
|
|
// store.dispatch('user/userLogout');
|
|
}
|
|
return Promise.reject(res.msg || 'Error');
|
|
} else {
|
|
return res;
|
|
}
|
|
},
|
|
(error) => {
|
|
console.log('err' + error);
|
|
Toast(error.message);
|
|
return Promise.reject(error.message);
|
|
},
|
|
);
|
|
|
|
/**
|
|
* reactive useFetchApi
|
|
*/
|
|
|
|
export default function useAxiosApi(url: string, config: AxiosRequestConfig) {
|
|
return useAxios(url, config, instance);
|
|
}
|