码迷,mamicode.com
首页 > 移动开发 > 详细

Vue复习六(vue-cli/axios)

时间:2021-02-15 12:39:12      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:浏览器   with   default   port   head   logo   请求超时   ISE   方法   

基础

axios.get(‘/user?ID=12345‘)
  .then(function (response) {
    // 成功
    console.log(response);
  })
  .catch(function (error) {
    // 失败
    console.log(error);
  })
  .then(function () {
    // 上一次的结果
  });

问号参数的请求
axios.get(‘/user‘, {
    params: {
      ID: 12345
    }
  })

post 请求
axios.post(‘/user‘, {
    firstName: ‘Fred‘,
    lastName: ‘Flintstone‘
  })

axios({
           method:‘post‘,
           url:‘/api2‘,
           data:params    // 参数
       })

方法

axios.request(config)
axios.get(url[, config])
axios.delete(url[, config])
axios.head(url[, config])
axios.options(url[, config])
axios.post(url[, data[, config]])
axios.put(url[, data[, config]])
axios.patch(url[, data[, config]])

请求配置

{
  url: ‘/user‘,
  // 请求方法
  method: ‘get‘, 
  // 更改请求数据
   transformRequest: function (data, headers) {
  //做任何要转换的数据, JSON形式
    return data;
  },    
   // 更改响应数据, 返回对象的形式
  transformResponse: (data,headers) => ({
                name: ‘xxx‘,
                sex: 234
            }),    
   // 发送的自定义头信息    
  headers: {‘X-Requested-With‘: ‘XMLHttpRequest‘},
   // 请求的参数
  params: {
    ID: 12345
  },    
 // 可选函数, 负责序列化 params
  paramsSerializer: function (params) {
    return Qs.stringify(params, {arrayFormat: ‘brackets‘})
  },   
 // 请求体发送的数据,用于post   
 // type : string, plain object, ArrayBuffer, ArrayBufferView, URLSearchParams     
  data: {
    firstName: ‘Fred‘
  },
  // 请求超时前的毫秒数。
//如果请求的时间超过‘ timeout ‘,请求将被中止。
  timeout: 1000,     
  //只有HTTP基本认证可以通过该参数配置。
//对于不记名的token,使用‘ Authorization ‘自定义头。
   auth: {
    username: ‘janedoe‘,
    password: ‘s00pers3cret‘
  },
  // 服务器将响应的数据类型
   //  ‘arraybuffer‘, ‘document‘, ‘json‘, ‘text‘, ‘stream‘   
   // 浏览器 ‘blob‘
  responseType: ‘json‘,   
}

修改响应数据

				// 数据,请求头
transformRequest:(data,header) => ‘{"foo":"bar"}‘,

拦截器

你这拦截器可以写一个文件里,导入到main.js

// http request 拦截器(请求)
axios.interceptors.request.use(
    config => {
        if (store.state.token) {  // 判断是否存在token,如果存在的话,则每个http header都加上token
            config.headers.Authorization = `token ${store.state.token}`;
        }
        return config;
    },
    err => {
        return Promise.reject(err);
    });

// http response 拦截器(响应)
axios.interceptors.response.use(
    response => {
        return response;
    },
    error => {
        if (error.response) {
            switch (error.response.status) {
                case 401:
                    // 返回 401 清除token信息并跳转到登录页面
                    store.commit(types.LOGOUT);
                    router.replace({
                        path: ‘login‘,
                        query: {redirect: router.currentRoute.fullPath}
                    })
            }
        }
        return Promise.reject(error.response.data)   // 返回接口返回的错误信息
    });
// 设置默认失效的时间
axios.defaults.timeout=2000;

删除拦截器

const myInterceptor = axios.interceptors.request.use(function () {/*...*/});
axios.interceptors.request.eject(myInterceptor);

我的想法是写一个文件

然后页面直接可以调用使用

import axios from "axios";

export class httpServer {
    constructor() {
    }

   static firstHttp(params) {
       return axios.post(‘/api2‘, {params: params}).then(res=>res.data)
    }

    static getVue(params) {
        return axios.get(‘/api3‘, params).then(res => res.data);
    }
}

Vue复习六(vue-cli/axios)

标签:浏览器   with   default   port   head   logo   请求超时   ISE   方法   

原文地址:https://www.cnblogs.com/fangdongdemao/p/14398132.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!