Axios源码解析:拦截器

[原文链接](https://github.com/AttemptWeb/Record/issues/26)

在Axios中拦截器是如何注册和调用的呢?下面我们一起来看看

**浏览器端Axios**调用流程如下:

```
初始化Axios——> 注册拦截器 ——> 请求拦截——> ajax请求 ——> 响应拦截 ——> 请求响应回调
```

## Axios初始化

第一步:当然调用Axios请求时初始化了

```javascript
// 初始化Axios
function Axios(instanceConfig) {
this.defaults = instanceConfig;
this.interceptors = {
request: new InterceptorManager(),
response: new InterceptorManager()
};
}

module.exports = Axios;
```
InterceptorManager和InterceptorManager函数分别是是request拦截器和response拦截器,注册拦截器回调函数,**这里只会讲/*请求拦截器*/,因为响应拦截器基本也是这个流程**;这样我们使用`axios.request.use`来添加拦截器函数时,实际就是`InterceptorManager`实例对象方法,那么这里`InterceptorManager`函数做了什么呢?

## InterceptorManager注册拦截函数

```javascript
function InterceptorManager() {
this.handlers = [];
}

//负责将拦截回调函数保存在handlers中
InterceptorManager.prototype.use = function use(fulfilled, rejected) {
this.handlers.push({
fulfilled: fulfilled,
rejected: rejected
});
return this.handlers.length - 1;
};
```
通过`axios.request.use`和`axios.response.use`请求、回调拦截器添加拦截器,实际就是调用用`InterceptorManager`下的`use`方法,将回调函数保存在`this.handlers`数组中。

## 调用拦截器函数和请求函数

一下就是调用请求的实际代码,调用`Axios`下的`request`方法,同时也会先进行一次参数合并
```javascript
this.request(mergeConfig(config || {}, {
method: method,
url: url,
data: (config || {}).data
}));
```

下面就是`request`方法的实际代码,如下:
```javascript
Axios.prototype.request = function request(config) {
// dispatchRequest函数即ajax请求函数
var chain = [dispatchRequest, undefined];
var promise = Promise.resolve(config);

this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {
chain.unshift(interceptor.fulfilled, interceptor.rejected);
});

this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {
chain.push(interceptor.fulfilled, interceptor.rejected);
});

// 组装 Promise 调用链,完成链式调用
while (chain.length) {
promise = promise.then(chain.shift(), chain.shift());
}

return promise;
};
```
在上面的代码中`chain`变量的实际值是这样的:
```javascript
chain = [请求回调拦截函数, 请求异常回调拦截函数, dispatchRequest, undefined, 响应回调拦截函数, 响应异常回调拦截函数 ]
```
然后通过循环,使用`Promise链式调用`,来完成`请求拦截——> ajax请求 ——> 响应拦截`的功能,最后将结果`return`出来,非常的巧妙!!

看下面的就理解了?
![](https://p3-juejin.byteimg.com/tos-cn-i-k3u1fbpfcp/12cbfa5ce9aa4983b80a039eb5e5d83b~tplv-k3u1fbpfcp-zoom-1.image)
<center>(图来源自转载)</center>

参考:

[77.9K Star 的 Axios 项目有哪些值得借鉴的地方](https://juejin.im/post/6885471967714115597#heading-3)

[Axios拦截器核心源码](https://github.com/axios/axios/blob/master/lib/core/Axios.js#L27)

原文地址:https://www.cnblogs.com/liuheng/p/15631863.html