美文网首页
Axios源码解析

Axios源码解析

作者: 前端的爬行之旅 | 来源:发表于2020-05-11 16:52 被阅读0次

axios如何实现多种请求方式


原理: 通过数组循环来批量注册接口,统一调用同一个方法,参数差异:通过until.merge()方法来解决差异。类型:通过方法循环的method来区分。
实现逻辑

  1. 生成axios实例;
  2. 通过bind方法将axios原型中的request方法指向axios实例;
  3. 通过extend方法将axios实例和axios的原型链合并并指向context
    目的: 扩展axios的调用方法。使axios可以通过axios.get去调用,也可以通过原型链去调用。
  4. 利用通过数组循环来批量注册接口,统一调用同一个方法.
    通过until.merge()方法来解决参数差异。

代码示例

function Axios (instanceConfig) {
  this.default = instanceConfig;
}
/** 
 * bind({}, {})
 * bind:将第一个参数的指向第二个参数;
 * extend({}, {})
 * extend:将两个对象进行合并;
*/
function creatInstance (defaultConfig) {
  let context = new Axios(defaultConfig);
  // 将Axios中的request方法,指向新的Axios对象
  let instance = bind(Axios.prototype.request, context);
  // 将前两个对象合并,合并后的this指向context
  // 目的:扩展axios的调用方法。使axios可以通过axios.get去调用,也可以通过原型链去调用。
  extend(instance, Axios.prototype, context);
  return instance;
}
// axios.get()

let arr = ['get', 'post', 'push ' ,'delete'];

arr.forEach((method) => {
  // 循环在原型链上注册请求方法。
  Axios.prototype[method] = function(url,config){
    // config :post的data,
    // util.merge :axios中的一个方法,原理对象合并
    return this.request(util.merge(config || {}, {
        methods: method,
        url: url
      })
    );
  };
})

axios如何实现请求拦截


实现逻辑

  1. 在axios中配置拦截器 interceptors,拦截器包含request属性,和response属性,两个属性对应拦截器管理方法interceptorsManner。
  2. interceptorsManner方法中配置handler属性,handler属性用于存放use加入的方法。
  3. 在interceptorsManner的原型上配置use方法,user方法将参数fulilled, rejected两个方法存入对象中并存入到handler中。
  4. 在axios的原型的request方法中注册数组chain = ['dispatchRequest', undefined];
    其中:request 会通过dispatchRequest将请求发送出去;
    4.1 循环interceptors.request.handler将用户存入的请求拦截的两个参数方法通过unshift分别存放到数组中。
    4.2 循环interceptors.response.handler将用户存入的响应拦截的两个参数方法通过shift分别存放到数组中。
    4.3 注册promise = Promise.resolve();
    4.4 循环chain,通过promise执行chain数组中的方法。
    示例代码
function Axios (instanceConfig) {
  this.default = instanceConfig;
  this.interceptors={
    request: new interceptorsManner(),
    response: new interceptorsManner(),
  };
}

Axios.prototype.request = function(){
  // request 会通过dispatchRequest将请求发送出去
  let chain = ['dispatchRequest', undefined];
  let promise = Promise.resolve();
  this.interceptors.request.handler.forEach((interceptor) => {
    chain.unshift(interceptor.fulilled, interceptor.rejected)
  })
  this.interceptors.response.handler.forEach((interceptor) => {
    chain.unshift(interceptor.fulilled, interceptor.rejected)
  // chain = [console.log(1), console.log(2),dispatchRequest,undefined, console.log(3), console.log(4)]
  })
  while(chain.length) {
    promise = promise.then(chain.shift(), chain.shift())
    // 举例
    // 第一次循环执行请求拦截前的成功和失败方法
    // 第二次循环执行发送请求和undefined;
    // 第一次循环执行响应拦截前的成功和失败方法
  }
  // 依次执行,并保证上一个方法完成之后在继续执行下一个方法。
};
function interceptorsManner () {
  this.handler= []; //存放use加入的方法
}
interceptorsManner.prototype.use = function use(fulilled, rejected) {
  this.handler.push({
    fulilled:  fulilled,
    rejected: rejected
  });
};
//请求拦截器&响应拦截器的使用方法
Axios.interceptors.request.use(function(){

},function(){

});
Axios.interceptors.response.use(function(){

},function(){

});

完美!!!!!!!!!!!!!!!!!!!!!!!!!!!
接下来你可能想要了解的:
axios文档地址
Axios封装示例代码+封装思路

相关文章

  • axios源码分析

    项目连接文档在线预览地址 axios源码分析 axios调用方法 axios 内部流程图 @ axios流程 解析...

  • Axios源码解析

    axios如何实现多种请求方式 原理: 通过数组循环来批量注册接口,统一调用同一个方法,参数差异:通过until....

  • axios源码解析

    Axios是近几年非常火的HTTP请求库,官网上介绍Axios 是一个基于 promise 的 HTTP 库,可以...

  • axios 源码解析

    实在来不及自己写了 把读过的文章先转过来 明天再进行编辑 axios项目目录结构 注:因为我们需要要看的代码都是...

  • 解析axios源码

    大致思路是这样子的,利用promise的链式调用,对ajax进行封装,请求结果通过then方法回传给axios,下...

  • Axios 源码解析

    本文不会细抠某些功能的具体实现方式,比如 config 的 merge 方式、utils 中的工具方法。而是抓住主...

  • 76.axios浏览器环境执行流程

    axios源码学习 环境搭建: github扒拉源码到本地[https://github.com/axios/ax...

  • Axios 源码解读 —— 源码实现篇

    在上两期,我们讲解了 Axios 的源码: Axios 源码解读 —— request 篇[https://git...

  • axios源码解析(二)核心

    核心函数 核心工具函数 core/*.js 1.buildFullPath.js 用于将baseURL与请求的re...

  • Axios使用及源码解析

    简介 axios 是一个用于浏览器和Node.js上的基于 Promise 的http网络库。 大纲 使用方式安装...

网友评论

      本文标题:Axios源码解析

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