axios:http请求库,返回一promise对象;支持node 和浏览器
核心模块:请求、拦截、撤销
1. 请求: 基于xhr 和http (支持浏览器 和 node)
https://github.com/axios/axios/blob/master/lib/adapters/http.js
https://github.com/axios/axios/blob/master/lib/adapters/xhr.js
2. 拦截器
https://github.com/axios/axios/blob/master/lib/core/Axios.js

3. Cancel
https://github.com/axios/axios/blob/master/lib/cancel/CancelToken.js