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

微信小程序:封装wx.request方法

程序员文章站 2022-05-02 20:27:10
...
//baseUrl -> prefix
const fetch = (options, callback, fail) => {
  let defaultOptions = {
    url: baseUrl,
    method: 'GET',
    data: null,
    success(data) {
      if (data.statusCode === 200 && data.data.code === 200) {
        typeof callback === 'function' && callback(data.data)
      } else {
        if (typeof fail === 'function') {
          if (data.data) {
            fail(data.data.msg)
          } else {
            fail(data.errMsg)
          }
        }
      }
    },
    fail(data) {
      typeof fail === 'function' && fail(data)
    }
  }

  if(typeof options === 'string'){
     if (options.startsWith('/')){
      defaultOptions.url += options
    }else throw new Error('Illegal param.')
  }else if (typeof options === 'object') {
    defaultOptions = Object.assign(defaultOptions, options)
  }

  return wx.request(defaultOptions)
}
相关标签: 封装