封装微信小程序请求

/**
 * 封装wx:request请求的工具
 */
const baseUrl = "";
const Ajax = options => {
  const { url, method, param,showLoad = true,other } = options;
  if (showLoad){
    wx.showLoading({
      title: '请稍等...'
    });
  }
    return new Promise((resolve, reject) => {
      wx.request({
        url:getUrl(url),
        data: param,
        method,
        ...other,
        success: (res) => {
          if (showLoad)wx.hideLoading();
          if (res.data.succ){
            resolve(res.data.data)
          }else{
             wx.showToast({
              title: res.data.errMsg,
              icon: 'none',
              duration: 2500
            })
          }
        },
        fail:(err)=>{
			console.log(err)
            if (showLoad) wx.hideLoading();
            wx.showModal({
              content: '请求超时!请检查当前网络!',
              showCancel: false,
            })
        }
      })
    })
}
//判断传递过来的请求路径是否是完整的url地址
const getUrl = (url) => {
  if (!url.includes('://')) {
      url = baseUrl + url;
    }
    return url
}
export default Ajax;

使用

/**
 * 分离所有请求
 * **/
import Ajax from "./Ajax.js";
 
export const getsomeThing= param => Ajax({
      url:"/api/getsomething",
      method:'POST',
      param
})

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值