赞
踩
1、创建 requset.js
// 引入axios import axios from 'axios' // 创建axios实例 const service = axios.create({ baseURL: 'http://xxx.xxx.xxx/api/', // baseURL timeout: 15000 // 请求超时的时间 }) // 请求拦截器 service.interceptors.request.use(config => { // 添加token config.headers['token'] = localStorage.getItem('token') return config }, error => {
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。