小程序一直到如今接口仍是和剛開始同樣使用的回調函數的方式,若是想在小程序中不使用框架的狀況下使用Promise+Async怎麼辦呢?git
首先建一個文件wxPromise.jsgithub
const promisify = name => option => { return new Promise((resolve, reject) => wx[name]({ ...option, success: resolve, fail: reject, }) ) } const wxPro = new Proxy(wx, { get(target, prop) { return promisify(prop) } }) export default wxPro
在github項目regenerator裏下載packages/regenerator-runtime/runtime.js。小程序
若是是最新版本的話引入後會報一個錯誤:app
Function is not a function....
須要手動修改源碼:
去掉源碼最後的try-catch語句,並將開頭的var runtime改爲var regeneratorRuntime。框架
若是不想修改則能夠直接下載0.13.1版本的源碼。async
在想使用的頁面裏引入:函數
import wxPro from './utils/wxPromise.js' import regeneratorRuntime from './utils/runtime.js' //app.js App({ async onLaunch() { // wxPro.login().then((res) => { // console.log(res) // }) const result = await wxPro.login() console.log(result) }, globalData: { userInfo: null } })
這樣就能夠了,惟一有點麻煩的是每一個要用的頁面都要引入一次。code