1
0
mirror of https://github.com/ruanyf/es6tutorial.git synced 2025-05-24 18:32:22 +00:00

generator函数本身没有next()方法

This commit is contained in:
rhgb 2014-05-30 11:31:09 +08:00
parent 2bd0cbbedb
commit b622298cde

View File

@ -107,12 +107,12 @@ function* loadUI() {
yield loadUIDataAsynchronously();
hideLoadingScreen();
}
var loader = loadUI();
// 加载UI
loadUI.next()
loader.next()
// 卸载UI
loadUI.next()
loader.next()
```