zoukankan      html  css  js  c++  java
  • axios 基本用法

    什么是 axios?

    Axios 是一个基于 promise 的 HTTP 库,可以用在浏览器和 node.js 中。

    安装

    npm i axios --S
    

    引入

    在 js 文件开头,使用如下命令引入:

    import axios from "axios";
    

    Get 方法

    new Vue({
      el: '#app',
      data () {
        return {
          info: null
        }
      },
      mounted () {
        axios
          .get('https://www.runoob.com/try/ajax/json_demo.json')
          .then(response => (this.info = response))
          .catch(function (error) { // 请求失败处理
            console.log(error);
          });
      }
    })
    

    GET 方法传递参数

    // 直接在 URL 上添加参数 ID=12345
    axios.get('/user?ID=12345')
      .then(function (response) {
        console.log(response);
      })
      .catch(function (error) {
        console.log(error);
      });
     
    // 也可以通过 params 设置参数:
    axios.get('/user', {
        params: {
          ID: 12345
        }
      })
      .then(function (response) {
        console.log(response);
      })
      .catch(function (error) {
        console.log(error);
      });
    

    POST 方法

    new Vue({
      el: '#app',
      data () {
        return {
          info: null
        }
      },
      mounted () {
        axios
          .post('https://www.runoob.com/try/ajax/demo_axios_post.php')
          .then(response => (this.info = response))
          .catch(function (error) { // 请求失败处理
            console.log(error);
          });
      }
    })
    

    POST 方法传递参数格式

    axios.post('/user', {
        firstName: 'Fred',        // 参数 firstName
        lastName: 'Flintstone'    // 参数 lastName
      })
      .then(function (response) {
        console.log(response);
      })
      .catch(function (error) {
        console.log(error);
      });
    

    响应结构

    axios请求的响应包含以下信息:

    {
      // `data` 由服务器提供的响应// `data` 由服务器提供的响应
      data: {},: {},
    
      // `status`  HTTP 状态码// `status`  HTTP 状态码
      status: 200,: 200,
    
      // `statusText` 来自服务器响应的 HTTP 状态信息// `statusText` 来自服务器响应的 HTTP 状态信息
      statusText: "OK",: "OK",
    
      // `headers` 服务器响应的头// `headers` 服务器响应的头
      headers: {},: {},
    
      // `config` 是为请求提供的配置信息// `config` 是为请求提供的配置信息
      config: {}: {}
    }}
    

    执行多个并发请求

    function getUserAccount() {
      return axios.get('/user/12345');
    }
     
    function getUserPermissions() {
      return axios.get('/user/12345/permissions');
    }
    axios.all([getUserAccount(), getUserPermissions()])
      .then(axios.spread(function (acct, perms) {
        // 两个请求现在都执行完成
      }));
    

    axios API

    可以通过向 axios 传递相关配置来创建请求。

    axios(config)
    // 发送 POST 请求
    axios({
      method: 'post',
      url: '/user/12345',
      data: {
        firstName: 'Fred',
        lastName: 'Flintstone'
      }
    });
    //  GET 请求远程图片
    axios({
      method:'get',
      url:'http://bit.ly/2mTM3nY',
      responseType:'stream'
    })
      .then(function(response) {
      response.data.pipe(fs.createWriteStream('ada_lovelace.jpg'))
    });
    axios(url[, config])
    // 发送 GET 请求(默认的方法)
    axios('/user/12345');
    

    请求方法的别名

    为方便使用,官方为所有支持的请求方法提供了别名,可以直接使用别名来发起请求:

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

    注意:在使用别名方法时, url、method、data 这些属性都不必在配置中指定。

    拦截器

    在请求或响应被 then 或 catch 处理前拦截它们。

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

    TypeScript支持

    axios 包含 TypeScript 的定义。

    import axios from "axios";
    axios.get("/user?ID=12345");
    

    参考资源:

    https://www.runoob.com/vue2/vuejs-ajax-axios.html

    http://www.axios-js.com/zh-cn/docs/

    每天学习一点点,每天进步一点点。

  • 相关阅读:
    nginx文件类型错误解析漏洞
    js 获取URL中的参数并转换为对象
    postman
    php curl参数详解
    php 两变量值互换 方法
    PHP 命名空间与spl_autoload_register() 自动加载机制
    php命名大小问题
    PHP实现冒泡排序
    使用 PHPStorm + Xdebug 实现断点调试(二)
    TSPL学习笔记(2):过程和变量绑定
  • 原文地址:https://www.cnblogs.com/youcoding/p/14562858.html
Copyright © 2011-2022 走看看