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不错。
来源:oschina
链接:https://my.oschina.net/u/940565/blog/769812