소프로그램 봉인 요청

1237 단어 소절차
const baseUrl = app.globalData.url;  // 
const http = ({ url = '', param = {}, ...other } = {}) => {
  wx.showLoading({
    title: ' , ..'
  })
  let timeStart = Date.now();
  return new Promise((resolve, reject) => {
    wx.request({
      url: getUrl(url),
      data: param,
      header: {
        'content-type': 'application/json',
        Authorization: param.token ? 'Bearer ' + param.token : ""
      },
      ...other,
      complete: (res) => {
        wx.hideLoading();
        if (res.statusCode >= 200 && res.statusCode < 300) {
          resolve(res.data)
        } else {
          reject(res)
        }
      }
    })
  })
}

const getUrl = (url) => {
  if (url.indexOf('://') == -1) {
    url = baseUrl + url
  }
  return url
}
// get 
const _get = (url, param = {}) => {
  return http({
    url,
    param
  })
}
const _post = (url, param = {}) => {
  return http({
    url,
    param,
    method: "post"
  })
}

module.exports = {
  _get,
  _post
}

페이지 호출 시
const utils = require("../../utils/util.js");

 utils._get(url, data).then(res => {   // 
	// 
})

좋은 웹페이지 즐겨찾기