小程序使用生成器函数
附上连接 哈哈
https://www.jsdelivr.com/package/npm/regenerator-runtime
引入他就可以了
引入runtime.js!!
比如
app.js
var regeneratorRuntime = require('./utils/runtime/index')
然后就可以愉快的使用了, 可以用co库也可以直接async
比如我这样:
async () => {
let loginResult = await wx.Http.testModel['com/login'](datas)
let infoResult = await wx.Http.testModel['com/info'](loginResult)
}
--END--
网友评论