微信小程序设置全局请求URL 封装wx.request请求

最近在学习微信小程序,网上搜索方法对wx.request 进行了下封装
好了,我就之间上代码了

首先在全局app.js 供公共调用

//app.js
App({ //注册小程序
  globalData:{
    url:'http://**********',//这个地方写你的url接口地址
  },
   /**
  * 封装wx.request请求
  * method: 请求方式
  * url: 请求地址
  * data: 要传递的参数
  * callback: 请求成功回调函数
  * errFun: 请求失败回调函数
  * token: token值
  **/
  wxRequest(method, url, data, callback, errFun, token) {
    wx.request({
      url: url,
      method: method,
      data: data,
      header: {
        'content-type': method == 'GET'?'application/json':'application/x-www-form-urlencoded',
        'Accept': 'application/json',
        'token': token
      },
      dataType: 'json',
      success: function (res) {
        callback(res);
      },
      fail: function (err) {
        errFun(err);
      }
    })
  }
})

局部调用事例


const app = getApp();
Page({
  onLoad: function () {
    let url = app.globalData.url + '/advert';
    let data = {};
    app.wxRequest('POST', url, data, (res) => {
      console.log(res.data)
    }, (err) => {
      console.log(err.errMsg)
    })
  }
})

借鉴于:https://blog.csdn.net/msllws/article/details/85062772

你可能感兴趣的:(微信小程序设置全局请求URL 封装wx.request请求)