yield *next 与 yield next的区别是什么?
走同样的路,发现不同的人生
yield* 是委托提取器,详情看这里:http://wiki.ecmascript.org/doku.php?id=harmony:generators#delegating_yield。简单地说,yield 是你给什么它提取什么,但是 yield* 会继续向下请求,直到没的提取为止。
yield*
yield
举个例子好了:
function* a() { yield 1; yield 2; yield 3; } function* b() { yield 4; yield* a(); yield 5; } function* c() { yield 6; yield* b(); yield 7; } for (let x of c()) console.log(x) // 你觉得会输出什么?先自己试试看
答案是:6, 4, 1, 2, 3, 5, 7,这个逻辑还算挺好理解吧?
6, 4, 1, 2, 3, 5, 7
其实可以简单的理解为:yield next是让generator返回next,而yield *next里的next本身是一个generator,外层generator返回这个next generator的返回值
yield*
是委托提取器,详情看这里:http://wiki.ecmascript.org/doku.php?id=harmony:generators#delegating_yield。简单地说,yield
是你给什么它提取什么,但是yield*
会继续向下请求,直到没的提取为止。举个例子好了:
答案是:
6, 4, 1, 2, 3, 5, 7
,这个逻辑还算挺好理解吧?其实可以简单的理解为:yield next是让generator返回next,而yield *next里的next本身是一个generator,外层generator返回这个next generator的返回值