您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
小程序原生使用ES7 async / await 语法
小程序开发工具-详情-开启ES6转ES5
下载 regenerator 库 https://github.com/facebook/regenerator
将库中packages文件夹下 regenerator-runtime 文件夹全部复制到小程序项目中
小程序项目全局引入 regenerator 库
在app.js中引入
const regeneratorRuntime = require('./libs/runtime-module.js')
使用方法
Page({ /** * 页面的初始数据 */ data: { num: 0 }, /** * 生命周期函数--监听页面加载 */ async onLoad(options) { this.testing() this.promiseFn() await this.testAsync() }, testing() { console.log('test') }, promiseFn() { this.testPromise().then((res) => { console.log(res) }) }, testPromise() { return new Promise((resolve, reject) => { setTimeout(() => { console.log('Promise handle') resolve(123) }, 2000) }) }, async testAsync() { const result = await this.testPromise() console.log('async test--', result) } })
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持亿速云。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。