小程序 - 使用async出现regeneratorRuntime is not defined错误
Posted 弓弧名家_玄真君
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小程序 - 使用async出现regeneratorRuntime is not defined错误相关的知识,希望对你有一定的参考价值。
新版本的小程序支持async / await。勾选下面选项后重新编译程序即可
以下是小程序未支持async / await时使用的方法
参考博客:小程序regeneratorRuntime is not defined 小程序中使用async函数
async await比Promise更好的解决异步操作问题,在小程序中直接使用会出现以下的错误提示
缺少了regeneratorRuntime这个模块,需要从外部引入
1.在新建的文件夹中执行 npm init ,生成package.json文件(一路回车就好)
2.执行 npm install regenerator@0.13.1
3.将node_modules/regenerator-runtime/runtime.js复制到小程序项目中
4.在需要使用到async await的.js文件中引入runtime.js
import regeneratorRuntime from '../../utils/runtime.js'
以上是关于小程序 - 使用async出现regeneratorRuntime is not defined错误的主要内容,如果未能解决你的问题,请参考以下文章