先看下程式碼:
function wrapper(generatorFunction) {
return function (...args) {
let generatorObject = generatorFunction(...args);
generatorObject.next();
return generatorObject;
};
}
const wrapped = wrapper(function* () {
console.log(`First input: ${yield}`);
return 'DONE';
});
wrapped().next('hello!')
// First input: hello!
這個輸出結果怎麼理解呢?想了半天不理解他的運行結果。
還有下面程式碼:
function* dataConsumer() {
console.log('Started');
console.log(`1. ${yield}`);
console.log(`2. ${yield}`);
return 'result';
}
let genObj = dataConsumer();
genObj.next();
// Started
genObj.next('a')
// 1. a
genObj.next('b')
// 2. b
還是看不懂,請大神幫忙分析上述兩段程式碼,幫我學習Generator函數。謝謝了。
怪我咯2017-06-26 10:52:39
yield
關鍵字有兩個作用:
暫停產生器函數執行並傳回後方表達式的值
恢復生成器函數執行並得到 next
方法傳入的選用參數
你給到的兩個例子都是用 yield
接收了 next
方法傳入的參數。