Nodejs:ES7中的Async/Await

☆樱花仙子☆ 提交于 2020-04-07 05:57:15

TJ的co是个基于生成器的异步变同步的解决方案。 https://github.com/tj/co

ES7中出了Async/Await,同样可以用同步方式去写异步代码。 http://think2011.net/2015/11/09/ES7-Async-Await/ 有介绍。

创建index.js,内容如下:

var sleep = function (time) {
    return new Promise(function (resolve, reject) {
        setTimeout(function () {
            resolve();
        }, time);
    })
};

var start = async function () {
    // 在这里使用起来就像同步代码那样直观
    console.log('start');
    await sleep(3000);
    console.log('end');
};

start();

使用方法1

$ npm i -g babel-cli
$ npm install babel-plugin-transform-async-to-generator

修改.babelrc

{
  "plugins": ["transform-async-to-generator"]
}

运行:

$ babel-node index.js
start
end

或者先编译在用node运行:

$ babel index.js -o build/index.js

$ node build/index.js
start
end

使用方法2

还是babel,http://masnun.com/2015/11/11/using-es7-asyncawait-today-with-babel.html

其他

https://github.com/yortus/asyncawait 是async、await的polyfill。

http://rossboucher.com/await/#/ 这个PPT不错。

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!