axios基础和封装

这篇博客详细介绍了axios的基础用法,包括安装、数据返回格式、请求数据的方法、并发请求、设置默认配置、超时时间、请求头以及拦截器的使用。还特别讨论了如何在Vue项目中处理跨域问题和如何进行axios的封装,以提高代码的可维护性。
摘要由CSDN通过智能技术生成

一、简介

axios 是一个基于Promise 用于浏览器和 nodejs 的 HTTP 客户端,它本身具有以下特征:

  • 从浏览器中创建 XMLHttpRequest

  • 从 node.js 发出 http 请求

  • 支持 Promise API

  • 拦截请求和响应

  • 转换请求和响应数据

  • 取消请求

  • 自动转换JSON数据

  • 客户端支持防止 CSRF/XSRF

二、安装

使用npm

//安装

npm install axios --save
​
//导入
import axios from "axios"

使用 cdn:

<script src="https://unpkg.com/axios/dist/axios.min.js"></script>

三、axios返回的数据

  • config 请求的时候附带的配置参数

  • data 后端返回的数据

  • headers 请求头 里面包含发送给后端的格式 application/json;charset=UTF-8

  • request ajax请求

  • status 返回的状态码

  • statusText 返回的状态文字

四、使用axios请求数据

(1)发送GET不带参数请求

import axios from "axios";
export default {
  methods: {
    init(){
      axios.get('http://www.bufantec.com/api/douban/movie/in_theaters')
      .then(function (response) {
        console.log(response);
      })
      .catch(function (error) {
        console.log(error);
      });
    }
  },
  created () {
    this.init();
  }
}

(2)get带参数请求

import axios from "axios";
export default {
  methods: {
    init(){
      axios.get('http://www.bufantec.com/api/douban/movie/in_theaters?start=1&limit=10')
      // get请求附带参数的另一种写法
      /* axios.get('http://www.bufantec.com/api/douban/movie/in_theaters',{
        params:{
          start:2,
          limit:10
        }
      }) */
      .then(function (response) {
        console.log(response);
      })
      .catch(function (error) {
        console.log(error);
      });
    }
  },
  created () {
    this.init();
  }
}

 

(3)post请求

 axios.post('http://order.gjw.com/Order_Api/GetValiCode')
      .then(function (response) {
        console.log(response);
      })
      .catch(function (error) {
        console.log(error);
      });

(4)post 带参数请求

axios.post('http://order.gjw.com/Order_Api/GetValiCode',{
        Mob:18311111111,
        validcode:"815961",
        use:"regiVali"
      } )
      .then(function (response) {
        console.log(response);
      })
      .catch(function (error) {
        console.log(error);
      
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值