-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
100 lines (88 loc) · 2.75 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// // Promise结合generator函数使用
// function fn(num) {
// return new Promise( resolve => {
// setTimeout(() => {
// resolve(num * 2)
// },1000)
// })
// }
// function* generator() {
// const num1 = yield fn(1)
// console.log(num1);
// const num2 = yield fn(num1)
// console.log(num2);
// const num3 = yield fn(num2)
// console.log(num3);
// return num3
// }
// // const gen = generator() //生成一个迭代器
// // gen.next().value.then(res1 => {
// // console.log(res1); // 2
// // gen.next(res1).value.then(res2 => {
// // console.log(res2); // 4
// // gen.next(res2).value.then(res3 => {
// // console.log(res3); // 8
// // console.log(gen.next(res3)); // { value: 8, done: true }
// // })
// // })
// // })
// // function generatorToAsync(generatorFn){
// // return function() {
// // return new Promise((resolve, reject) => {
// // const gen = generatorFn() //生成一个迭代器
// // gen.next().value.then(res1 => {
// // gen.next(res1).value.then(res2 => {
// // gen.next(res2).value.then(res3 => {
// // // console.log(gen.next(res3).value); // { value: 8, done: true }
// // resolve(gen.next(res3).value)
// // })
// // })
// // })
// // })
// // }
// // }
// function generatorToAsync(generatorFn){
// return function() {
// const gen = generatorFn(this,arguments); //生成一个迭代器
// return new Promise((resolve, reject) => {
// function go(key,arg){
// let res;
// try {
// res = gen[key](arg)
// } catch (error) {
// reject(error)
// }
// const {value,done} = res;
// if(done){
// resolve(value)
// }else {
// // -- 这行代码就是精髓 --
// // 将所有值promise化
// // 比如 yield 1
// // const a = Promise.resolve(1) a 是一个 promise
// // const b = Promise.resolve(a) b 是一个 promise
// // 可以做到统一 promise 输出
// Promise.resolve(value).then(res => go('next',res),err => go('throw',err))
// }
// }
// go('next')
// })
// }
// }
// const asyncFn = generatorToAsync(generator)
// const asyncRes = asyncFn()
// console.log(asyncRes);
// asyncRes.then(res => console.log(res));
// // ---------- async ----------
// // async function asyncFn() {
// // const num1 = await fn(1)
// // console.log(num1)
// // const num2 = await fn(num1)
// // console.log(num2)
// // const num3 = await fn(num2)
// // console.log(num3)
// // return num3
// // }
// // const asyncRes = asyncFn()
// // console.log(asyncRes)
// // asyncRes.then(res => console.log(res))