赞
踩
- import axios from 'axios'
-
- // 配置请求的根路径
-
- axios.defaults.baseURL = 'http://localhost:3000/api'
-
- // 为每次请求添加请求拦截器,为请求头添加authorization属性
-
- axios.interceptors.request.use((config) => {
-
- // console.log(config);
-
- config.headers.Authorization = SessionStorage.getItem('token');
-
- return config;
-
- })
-
- Vue.prototype.$axios = axios
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。