码迷,mamicode.com
首页 > 其他好文 > 详细

用Generator简化异步操作代码

时间:2015-06-18 09:23:02      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

 

有点像Promise的变形, 目前还没想到更优雅的写法。

总觉得Generator有点像线程,有中断有唤醒,Generator应该可以模拟多线程时间片的效果。

 

function async(x, _genObj) {
setTimeout(function() {
_genObj.next(x + x);
}, 100);
}

function* testGen(aa) {
console.log(‘第一步‘);
var re = yield async(aa,genObj);
console.log(‘第二步‘, re);
re = yield async(re,genObj);
console.log(‘第三步‘, re);
re = yield async(re,genObj);
console.log(‘第四步‘, re);
}
var genObj = testGen(2);
genObj.next();

用Generator简化异步操作代码

标签:

原文地址:http://www.cnblogs.com/felix-grey/p/4584917.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!