微信小程序wx_request封装

前言

封装wx.request为异步,以便利用async await

function http(options){
  return new Promise((reslove,reject)=>{
    wx.request({
      url:options.url,
      method:options.method,
      data:options.data,
      header:{...options.header},
      success:function(data){
        reslove(data)
      },
      fil:function(err){
        reject(err)
      }

    })
  })
}
module.exports={
  http:http
}

 

posted @ 2019-06-08 20:23  大笛子  阅读(103)  评论(0编辑  收藏  举报