• axios执行多个请求参数


    直接上代码吧

    两个数据一样 通过post请求的

    第一个请求的数据--------------------------

      function getUserAccount() {
      return axios({
                 methods:"post",
                 url: 'https://api.it120.cc/small4/user/m/login?deviceId=007&deviceName=monkey',
                 params:{
                      mobile:13500000000,
                      pwd:12345
                  }
      });
    }
    第二个请求的数据--------------------------
    function getUserPermissions() {
      return axios({
                 methods:"post",
                url: 'https://api.it120.cc/small4/user/m/login?deviceId=007&deviceName=monkey',
                 params:{
                      mobile:13500000000,
                      pwd:12345
                  }
      });
    }
    通过控制台打印---------------------------需要哪个数据将哪个通过console.log进行控制台打印
    axios.all([getUserAccount(), getUserPermissions()])
      .then(axios.spread(function (acct, perms) {
        // 两个请求现在都执行完成
      console.log(perms)
      }));
    console.dir(axios)  控制台打印发现axios的方法全部都在构造函数上。
     仅供参考谢谢。
  • 相关阅读:
    课程安排及脉络
    面向对象 魔法方法 单例(五)
    练习项目:选课系统
    面向对象 多态 类方法 反射 (四)
    面向对象(三) 组合 封装
    面向对象编程(二)
    面向对象编程(一)
    python入门总复习
    模块(四)
    模块(三)
  • 原文地址:https://www.cnblogs.com/yangjingyang/p/11505735.html
Copyright © 2020-2023  润新知