mirror of
https://gitee.com/XZCRAZY/wx_epaper_lite.git
synced 2025-12-06 11:32:48 +08:00
40 lines
434 B
JavaScript
40 lines
434 B
JavaScript
|
||
/**
|
||
|
||
* 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,
|
||
}
|