基础请求封装

2019-05-31  本文已影响0人  风雪夜丶

在请求封装页面xx.js中

import axios from 'axios'

// axios 基本配置
const service = axios.create({
  baseURL: process.env.VUE_APP_BASE_API, // 请求域名 url = base url + request url
  // withCredentials: true, // send cookies when cross-domain requests
  timeout: 5000 // 请求超时时间
})

// 添加请求拦截器
service.interceptors.request.use(function (config) {
    // 在发送请求之前做些什么
    return config;
}, function (error) {
    // 对请求错误做些什么
    return Promise.reject(error);
});

// 添加响应拦截器
service.interceptors.response.use(function (response) {
    // 对响应数据做点什么
    return response;
}, function (error) {
    // 对响应错误做点什么
    return Promise.reject(error);
});

export function axiosPost(url,data={}) {
    return new Promise((resolve, reject) => {
        service.post(url,data).then(res=>{
            resolve(res.data)
        }),err=>{
            reject(err)
        }
    })
}

在统一的api文件中

import { axiosPost } from "../http/request";

export const indexInfo = (data={})=>axiosPost('url',data);

使用页面中

async getInfo(){
    const Info = await indexInfo()
    this.AboutInfo = Info
    console.log(Info)
 }
上一篇下一篇

猜你喜欢

热点阅读