@babel/plugin-transform-async-to-generator
信息
此插件包含在 @babel/preset-env
中,位于 ES2017
在 Babel 7 中,transform-async-to-module-method
已合并到此插件中
示例
输入
JavaScript
async function foo() {
await bar();
}
输出
JavaScript
var _asyncToGenerator = function (fn) {
...
};
var foo = _asyncToGenerator(function* () {
yield bar();
});
使用选项输出
将异步函数转换为 Bluebird 协程(注意事项)
JavaScript
var Bluebird = require("bluebird");
var foo = Bluebird.coroutine(function*() {
yield bar();
});
安装
- npm
- Yarn
- pnpm
npm install --save-dev @babel/plugin-transform-async-to-generator
yarn add --dev @babel/plugin-transform-async-to-generator
pnpm add --save-dev @babel/plugin-transform-async-to-generator
用法
使用配置文件(推荐)
无选项
babel.config.json
{
"plugins": ["@babel/plugin-transform-async-to-generator"]
}
使用选项
babel.config.json
{
"plugins": [
[
"@babel/plugin-transform-async-to-generator",
{
"module": "bluebird",
"method": "coroutine"
}
]
]
}
通过 CLI
Shell
babel --plugins @babel/plugin-transform-async-to-generator script.js
通过 Node API
JavaScript
require("@babel/core").transformSync("code", {
plugins: ["@babel/plugin-transform-async-to-generator"],
});
注意事项
Bluebird 非 Promise 运行时错误
当对非 Promise 值使用 await
时,Bluebird 将抛出“错误:产生了一个无法视为 Promise 的值”。由于 Babel 无法自动处理此运行时错误,因此您应该手动将其转换为 Promise。
async function foo() {
- await 42;
+ await Promise.resolve(42);
}