Axios源码创建实例学习

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />
    <title>MyAxios</title>
  </head>
  <body>
    <script>
      // Axios构造函数
      function Axios(config) {
        // 请求配置
        this.defaults = config;
        // 拦截器
        this.interceptors = {
          request: new interceptorManager(),
          response: new interceptorManager()
        };
      }
      Axios.prototype.request = function(config) {
        console.log("发送请求,请求类型:" + config.method);
      };
      Axios.prototype.get = function(config) {
        return this.request({ ...config, method: "GET" });
      };
      Axios.prototype.post = function(config) {
        return this.request({ ...config, method: "POST" });
      };
      // 拦截器构造函数
      function interceptorManager() {}

      // 实际场景中axios对象既可以作为对象使用也可以作为函数使用
      function createInstance(config) {
        // 1.context对象可以调用方法,但自身不能作为函数使用
        let context = new Axios(config);
        // 2.instance函数是绑定了context对象的request方法,可作为函数使用,但自身不是对象,不能调用方法
        let instance = Axios.prototype.request.bind(context);
        // 3.遍历对象的属性和方法并复制到instance函数中,则instance函数既可以作为函数使用,也可以调用context对象的方法
        Object.keys(context).forEach(key => {
          instance[key] = context[key];
        });
        Object.keys(Axios.prototype).forEach(key => {
          instance[key] = Axios.prototype[key].bind(context);
        });
        return instance;
      }

      // 创建实际场景中使用的axios对象
      let axios = createInstance();
      // 作为函数使用
      axios({ method: "GET" });
      // 调用方法使用
      axios.request({ method: "POST" });
      axios.get();
      axios.post();
    </script>
  </body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值