微信小程序中promise的使用

Posted 竹林中

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信小程序中promise的使用相关的知识,希望对你有一定的参考价值。


/**
 * wxPromisify
 * @fn 传入的函数,如wx.request、wx.download
 */

function wxPromisify(fn) {
  return function (obj = {}) {
    return new Promise((resolve, reject) => {
      obj.success = function (res) {
        resolve(res)
      }

      obj.fail = function (res) {
        reject(res)
      }

      fn(obj)//执行函数,obj为传入函数的参数
    })
  }
}



module.exports = {
    wxPromisify: wxPromisify
}
var getSystemInfo = Promisify.wxPromisify(wx.getSystemInfo);
        var getUserInfo = Promisify.wxPromisify(wx.getUserInfo);
        var downloadFile = Promisify.wxPromisify(wx.downloadFile);
        var request = Promisify.wxPromisify(wx.request);
    
        request({
            url: ‘https://xindongpeixun.com/auth/news/page‘,
            method: ‘GET‘,
            header:{
                ‘content-type‘: ‘json‘
            }
        }).then(res => {   
            console.log(res.data.data.records)                 
        })

 

 

 


以上是关于微信小程序中promise的使用的主要内容,如果未能解决你的问题,请参考以下文章

微信小程序使用promise封装异步请求

promise化微信小程序api

微信小程序使用Promise对wx.request()进行封装详细教程(附完整代码)

微信小程序代码片段分享

微信小程序中promise的使用

把微信小程序异步API为Promise,简化异步编程