美文网首页
基础请求封装

基础请求封装

作者: 风雪夜丶 | 来源:发表于2019-05-31 10:10 被阅读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)
     }

    相关文章

      网友评论

          本文标题:基础请求封装

          本文链接:https://www.haomeiwen.com/subject/iuzitctx.html