码迷,mamicode.com
首页 > 其他好文 > 详细

taro封装request请求

时间:2021-04-26 13:33:10      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:request请求   head   错误   header   数据   turn   hide   const   ISE   

export const request = (url, method = "GET", data) => {
  let _url = `${baseUrlPrefix}${url}`;

  return new Promise((resolve, reject) => {
    Taro.showLoading({
      title: "正在加载"
    });
    Taro.request({
      url: _url,
      data: data,
      method: method,
      header: {
        "content-type": "application/json"
      },
      success: res => {
        console.log("从接口获取到的数据", res);
        let { code } = res.data;
        Taro.hideLoading();
        if (code === 200) {
          resolve(res.data.data);
          wx.hideLoading();
        } else {
          wx.showToast({
            title: "数据请求错误"
          });
        }
      },
      fail() {
        reject("接口有误,请检查");
      }
    });
  });
};

taro封装request请求

标签:request请求   head   错误   header   数据   turn   hide   const   ISE   

原文地址:https://www.cnblogs.com/tulintao/p/14698959.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!