当前位置:   article > 正文

微信小程序--封装ajax_微信小程序 封装 ajax

微信小程序 封装 ajax

全局封装 ajax ,方便添加默认参数 ,判断本地存储信息 ,登录情况

// 基准路径

const baseUrl = ‘http://www.xxx.com/xxxx/methods/’

//获取countryCode 和 exchange_rate

function getExrate(url, method, header={}) {

wx.request({

url: baseUrl + url,

method: "GET",

data:{},

header,

success: res => { 

  if(res.statusCode == 200){

    //设置countryCode 和 exchange_rate

    let countryCode = res.data.data.countryCode;

    let exchange_rate = res.data.data.exchange_rate;

    wx.setStorage({

      key: "countryCode",

      data: countryCode

    })

    wx.setStorage({

      key: "exchange_rate",

      data: exchange_rate

    })

  }

  wx.hideLoading()

},

fail: err => {

  console.log(err);

}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45

})

}

// 1.0 返回一个 promise 对象

function request(url, method = ‘GET’, data = {}, header = {}) {

//获取本地存储信息

try {

const res = wx.getStorageInfoSync()

//已经登录  添加user_id

if (res.hhauseUser){

  let hhauseUser = JSON.parse(res.hhauseUser)

  data.user_id = hhauseUser.user_id

}

//添加来源

data.source = 'WeChat'

if (!res.countryCode || !res.exchange_rate){

  getExrate('system.getExrate', method)

}

//添加地区编码

data.countryCode = res.countryCode || "CN"

//添加汇率

data.exchange_rate = res.exchange_rate || "7.0406"

//添加版本

data.v = '1.0'
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33

} catch (e) {

console.log(e);
  • 1

}

return new Promise((resolve, reject) => {

wx.showLoading({

  title: '加载中'

})

// 2.0 完成逻辑处理

wx.request({

  url:  url,

  method: method,

  data: data,

  header,

  success: res => { 

    resolve(res)

    wx.hideLoading()

  },

  fail: err => {

    reject(err)

  }

})
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33

})

}

// 封装一个单独的 get 方法

request.get = function (url, data = {}) {

return request(baseUrl + url, ‘GET’, data)

}

// 封装一个单独的 post 方法

request.post = function (url, data = {}) {

return request(baseUrl + url, ‘POST’, data)

}

// 3.0 暴露给外界

export default request

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/147926
推荐阅读
相关标签
  

闽ICP备14008679号