欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

axios 请求

程序员文章站 2022-07-02 18:45:59
...

请求

/**   *   * @param {*} that this指向   * @param {*} pUrl 公共接口地址   * @param {*} url 详细接口地址   * @param {*} data 形参   * @param {*} cbk 回调函数   */  _Init: function(that, pUrl, url, data, cbk) {    axios({      url: pUrl + url,      method: "post",      data: data,      headers: {        "Content-Type": "application/json"      }    })      .then(res => {        console.log(res);        cbk(res);      })      .catch(cat => {        console.log("axios的catch", cat);        that.$message({          message: "数据异常",          center: true        });      });  },复制代码