不了解Promise是什么的可以移步

上节我们实现了Promise方法,本节我们接着上节来实现then方法,本节是关键也是难点哦。

1、then方法

  1. then接收两个参数, onFulfilled 和 onRejected
  1. then(onFulfilled, onRejected) {}
  1. 检查并处理参数, 如果不是function 就忽略. 这个忽略指的是返回value或者reason
  1. isFunction(param) {
  2. return typeof param === 'function';
  3. }
  4. then(onFulfilled, onRejected) {
  5. const fulFilledFn = this.isFunction(onFulfilled) ? onFulfilled : (value) => {
  6. return value;
  7. }
  8. const rejectedFn = this.isFunction(onRejected) ? onRejected : (reason) => {
  9. throw reason
  10. };
  11. }
  1. 根据当前promise的状态, 调用不同的函数
  1. then(onFulfilled, onRejected) {
  2. const fulFilledFn = this.isFunction(onFulfilled) ? onFulfilled : (value) => {
  3. return value;
  4. }
  5. const rejectedFn = this.isFunction(onRejected) ? onRejected : (reason) => {
  6. throw reason;
  7. };
  8. switch (this.status) {
  9. case FULFILLED: {
  10. fulFilledFn(this.value);
  11. break;
  12. }
  13. case REJECTED: {
  14. rejectedFn(this.reason);
  15. break;
  16. }
  17. }
  18. }
  1. pending状态处理

如果照着上面那么写的话,有以下两个问题:

  • 是在then函数被调用的瞬间就会执行,这时候status或许还没变成fulfilled或者rejected,很有可能是pending状态;

  • 链式调用允许我们多次调用 then,多个 then 中传入的 onResolved(也叫onFulFilled) 和 onRejected 任务;

4.1 所以我们首先要拿到所有的回调, 然后才能在某个时机去执行。新建两个数组, 来分别存储成功和失败的回调, 调用then的时候, 如果还是pending就存入数组。

  1. then(onFulfilled, onRejected) {
  2. const fulFilledFn = this.isFunction(onFulfilled) ? onFulfilled : (value) => {
  3. return value;
  4. }
  5. const rejectedFn = this.isFunction(onRejected) ? onRejected : (reason) => {
  6. throw reason;
  7. };
  8. switch (this.status) {
  9. case FULFILLED: {
  10. fulFilledFn(this.value);
  11. break;
  12. }
  13. case REJECTED: {
  14. rejectedFn(this.reason);
  15. break;
  16. }
  17. case PENDING: {
  18. this.FULFILLED_CALLBACK_LIST.push(realOnFulfilled);
  19. this.REJECTED_CALLBACK_LIST.push(realOnRejected);
  20. break;
  21. }
  22. }
  23. }

4.2 在status发生变化的时候, 就执行所有的回调. 这里咱们用一下es6的getter和setter。

  1. get status() {
  2. return this._status;
  3. }
  4. set status(newStatus) {
  5. switch (newStatus) {
  6. case FULFILLED: {
  7. this.FULFILLED_CALLBACK_LIST.forEach(callback => {
  8. callback(this.value);
  9. });
  10. break;
  11. }
  12. case REJECTED: {
  13. this.REJECTED_CALLBACK_LIST.forEach(callback => {
  14. callback(this.reason);
  15. });
  16. break;
  17. }
  18. }
  19. }
  1. then的返回值

注意:这块内容比较多,单独拆一下,是重点也是难点;

5.1 链式调用,需要返回promise,所以我们暂时命名为promise2。如果 onFulfilled 或者 onRejected 抛出一个异常 e ,则 promise2 必须拒绝执行,并返回拒绝原因 e。(需要手动catch代码,遇到报错就reject)

  1. then(onFulfilled, onRejected) {
  2. const fulFilledFn = this.isFunction(onFulfilled) ? onFulfilled : (value) => {
  3. return value;
  4. }
  5. const rejectedFn = this.isFunction(onRejected) ? onRejected : (reason) => {
  6. throw reason;
  7. };
  8. // 手动捕获异常
  9. const fulFilledFnWithCatch = (resolve, reject) => {
  10. try {
  11. fulFilledFn(this.value);
  12. } catch (e) {
  13. reject(e)
  14. }
  15. };
  16. // 手动捕获异常
  17. const rejectedFnWithCatch = (resolve, reject) => {
  18. try {
  19. rejectedFn(this.reason);
  20. } catch (e) {
  21. reject(e);
  22. }
  23. }
  24. switch (this.status) {
  25. case FULFILLED: {
  26. // 返回Promise供链式调用
  27. return new MyPromise(fulFilledFnWithCatch);
  28. }
  29. case REJECTED: {
  30. return new MyPromise(rejectedFnWithCatch);
  31. }
  32. case PENDING: {
  33. return new MyPromise((resolve, reject) => {
  34. this.FULFILLED_CALLBACK_LIST.push(() => fulFilledFnWithCatch(resolve, reject));
  35. this.REJECTED_CALLBACK_LIST.push(() => rejectedFnWithCatch(resolve, reject));
  36. });
  37. }
  38. }
  39. }

5.2 如果 onFulfilled 不是函数且 promise1 成功执行, promise2 必须成功执行并返回相同的值。

  1. const fulFilledFnWithCatch = (resolve, reject) => {
  2. try {
  3. fulFilledFn(this.value);
  4. resolve(this.value);
  5. } catch (e) {
  6. reject(e)
  7. }
  8. };

5.3 如果 onRejected 不是函数且 promise1 拒绝执行, promise2 必须拒绝执行并返回相同的据因。

需要注意的是,如果promise1的onRejected执行成功了,promise2应该被resolve。

  1. const rejectedFnWithCatch = (resolve, reject) => {
  2. try {
  3. rejectedFn(this.reason);
  4. if (this.isFunction(onRejected)) {
  5. resolve();
  6. }
  7. } catch (e) {
  8. reject(e);
  9. }
  10. }

5.4 如果 onFulfilled 或者 onRejected 返回一个值 x ,则运行resolvePromise方法

  1. then(onFulfilled, onRejected) {
  2. const fulFilledFn = this.isFunction(onFulfilled) ? onFulfilled : (value) => {
  3. return value;
  4. }
  5. const rejectedFn = this.isFunction(onRejected) ? onRejected : (reason) => {
  6. throw reason;
  7. };
  8. const fulFilledFnWithCatch = (resolve, reject, newPromise) => {
  9. try {
  10. if (!this.isFunction(onFulfilled)) {
  11. resolve(this.value);
  12. } else {
  13. const x = fulFilledFn(this.value);
  14. this.resolvePromise(newPromise, x, resolve, reject);
  15. }
  16. } catch (e) {
  17. reject(e)
  18. }
  19. };
  20. const rejectedFnWithCatch = (resolve, reject, newPromise) => {
  21. try {
  22. if (!this.isFunction(onRejected)) {
  23. reject(this.reason);
  24. } else {
  25. const x = rejectedFn(this.reason);
  26. this.resolvePromise(newPromise, x, resolve, reject);
  27. }
  28. } catch (e) {
  29. reject(e);
  30. }
  31. }
  32. switch (this.status) {
  33. case FULFILLED: {
  34. const newPromise = new MyPromise((resolve, reject) => fulFilledFnWithCatch(resolve, reject, newPromise));
  35. return newPromise;
  36. }
  37. case REJECTED: {
  38. const newPromise = new MyPromise((resolve, reject) => rejectedFnWithCatch(resolve, reject, newPromise));
  39. return newPromise;
  40. }
  41. case PENDING: {
  42. const newPromise = new MyPromise((resolve, reject) => {
  43. this.FULFILLED_CALLBACK_LIST.push(() => fulFilledFnWithCatch(resolve, reject, newPromise));
  44. this.REJECTED_CALLBACK_LIST.push(() => rejectedFnWithCatch(resolve, reject, newPromise));
  45. });
  46. return newPromise;
  47. }
  48. }
  49. }

5.5 resolvePromise方法

  1. resolvePromise(newPromise, x, resolve, reject) {
  2. // 如果 newPromise 和 x 指向同一对象,以 TypeError 为据因拒绝执行 newPromise
  3. // 这是为了防止死循环
  4. if (newPromise === x) {
  5. return reject(new TypeError('The promise and the return value are the same'));
  6. }
  7. if (x instanceof MyPromise) {
  8. // 如果 x 为 Promise ,则使 newPromise 接受 x 的状态
  9. // 也就是继续执行x,如果执行的时候拿到一个y,还要继续解析y
  10. // 这个if跟下面判断then然后拿到执行其实重复了,可有可无
  11. x.then((y) => {
  12. resolvePromise(newPromise, y, resolve, reject);
  13. }, reject);
  14. } else if (typeof x === 'object' || this.isFunction(x)) {
  15. // 如果 x 为对象或者函数
  16. // 这个坑是跑测试的时候发现的,如果x是null,应该直接resolve
  17. if (x === null) {
  18. return resolve(x);
  19. }
  20. let then = null;
  21. try {
  22. // 把 x.then 赋值给 then
  23. then = x.then;
  24. } catch (error) {
  25. // 如果取 x.then 的值时抛出错误 e ,则以 e 为据因拒绝 promise
  26. return reject(error);
  27. }
  28. // 如果 then 是函数
  29. if (this.isFunction(then)) {
  30. let called = false;
  31. // 将 x 作为函数的作用域 this 调用之
  32. // 传递两个回调函数作为参数,第一个参数叫做 resolvePromise ,第二个参数叫做 rejectPromise
  33. // 名字重名了,我直接用匿名函数了
  34. try {
  35. then.call(
  36. x,
  37. // 如果 resolvePromise 以值 y 为参数被调用,则运行 resolvePromise
  38. (y) => {
  39. // 如果 resolvePromise 和 rejectPromise 均被调用,
  40. // 或者被同一参数调用了多次,则优先采用首次调用并忽略剩下的调用
  41. // 实现这条需要前面加一个变量called
  42. if (called) return;
  43. called = true;
  44. resolvePromise(promise, y, resolve, reject);
  45. },
  46. // 如果 rejectPromise 以据因 r 为参数被调用,则以据因 r 拒绝 promise
  47. (r) => {
  48. if (called) return;
  49. called = true;
  50. reject(r);
  51. });
  52. } catch (error) {
  53. // 如果调用 then 方法抛出了异常 e:
  54. // 如果 resolvePromise 或 rejectPromise 已经被调用,则忽略之
  55. if (called) return;
  56. // 否则以 e 为据因拒绝 promise
  57. reject(error);
  58. }
  59. } else {
  60. // 如果 then 不是函数,以 x 为参数执行 promise
  61. resolve(x);
  62. }
  63. } else {
  64. // 如果 x 不为对象或者函数,以 x 为参数执行 promise
  65. resolve(x);
  66. }
  67. }

5.6 onFulfilled 和 onRejected 是微任务

可以用queueMicrotask包裹执行函数

  1. then(onFulfilled, onRejected) {
  2. const fulFilledFn = this.isFunction(onFulfilled) ? onFulfilled : (value) => {
  3. return value;
  4. }
  5. const rejectedFn = this.isFunction(onRejected) ? onRejected : (reason) => {
  6. throw reason;
  7. };
  8. const fulFilledFnWithCatch = (resolve, reject, newPromise) => {
  9. queueMicrotask(() => {
  10. try {
  11. if (!this.isFunction(onFulfilled)) {
  12. resolve(this.value);
  13. } else {
  14. const x = fulFilledFn(this.value);
  15. this.resolvePromise(newPromise, x, resolve, reject);
  16. }
  17. } catch (e) {
  18. reject(e)
  19. }
  20. })
  21. };
  22. const rejectedFnWithCatch = (resolve, reject, newPromise) => {
  23. queueMicrotask(() => {
  24. try {
  25. if (!this.isFunction(onRejected)) {
  26. reject(this.reason);
  27. } else {
  28. const x = rejectedFn(this.reason);
  29. this.resolvePromise(newPromise, x, resolve, reject);
  30. }
  31. } catch (e) {
  32. reject(e);
  33. }
  34. })
  35. }
  36. switch (this.status) {
  37. case FULFILLED: {
  38. const newPromise = new MyPromise((resolve, reject) => fulFilledFnWithCatch(resolve, reject, newPromise));
  39. return newPromise;
  40. }
  41. case REJECTED: {
  42. const newPromise = new MyPromise((resolve, reject) => rejectedFnWithCatch(resolve, reject, newPromise));
  43. return newPromise;
  44. }
  45. case PENDING: {
  46. const newPromise = new MyPromise((resolve, reject) => {
  47. this.FULFILLED_CALLBACK_LIST.push(() => fulFilledFnWithCatch(resolve, reject, newPromise));
  48. this.REJECTED_CALLBACK_LIST.push(() => rejectedFnWithCatch(resolve, reject, newPromise));
  49. });
  50. return newPromise;
  51. }
  52. }
  53. }

5.7 catch方法实现

  1. catch (onRejected) {
  2. return this.then(null, onRejected);
  3. }

2、测试

完整代码测试一下:

  1. const PENDING = 'pending';
  2. const FULFILLED = 'fulfilled';
  3. const REJECTED = 'rejected';
  4. class MyPromise {
  5. FULFILLED_CALLBACK_LIST = [];
  6. REJECTED_CALLBACK_LIST = [];
  7. _status = PENDING;
  8. constructor(fn) {
  9. // 初始状态为pending
  10. this.status = PENDING;
  11. this.value = null;
  12. this.reason = null;
  13. try {
  14. fn(this.resolve.bind(this), this.reject.bind(this));
  15. } catch (e) {
  16. this.reject(e);
  17. }
  18. }
  19. get status() {
  20. return this._status;
  21. }
  22. set status(newStatus) {
  23. this._status = newStatus;
  24. switch (newStatus) {
  25. case FULFILLED: {
  26. this.FULFILLED_CALLBACK_LIST.forEach(callback => {
  27. callback(this.value);
  28. });
  29. break;
  30. }
  31. case REJECTED: {
  32. this.REJECTED_CALLBACK_LIST.forEach(callback => {
  33. callback(this.reason);
  34. });
  35. break;
  36. }
  37. }
  38. }
  39. resolve(value) {
  40. if (this.status === PENDING) {
  41. this.value = value;
  42. this.status = FULFILLED;
  43. }
  44. }
  45. reject(reason) {
  46. if (this.status === PENDING) {
  47. this.reason = reason;
  48. this.status = REJECTED;
  49. }
  50. }
  51. then(onFulfilled, onRejected) {
  52. const fulFilledFn = this.isFunction(onFulfilled) ? onFulfilled : (value) => {
  53. return value;
  54. }
  55. const rejectedFn = this.isFunction(onRejected) ? onRejected : (reason) => {
  56. throw reason;
  57. };
  58. const fulFilledFnWithCatch = (resolve, reject, newPromise) => {
  59. queueMicrotask(() => {
  60. try {
  61. if (!this.isFunction(onFulfilled)) {
  62. resolve(this.value);
  63. } else {
  64. const x = fulFilledFn(this.value);
  65. this.resolvePromise(newPromise, x, resolve, reject);
  66. }
  67. } catch (e) {
  68. reject(e)
  69. }
  70. })
  71. };
  72. const rejectedFnWithCatch = (resolve, reject, newPromise) => {
  73. queueMicrotask(() => {
  74. try {
  75. if (!this.isFunction(onRejected)) {
  76. reject(this.reason);
  77. } else {
  78. const x = rejectedFn(this.reason);
  79. this.resolvePromise(newPromise, x, resolve, reject);
  80. }
  81. } catch (e) {
  82. reject(e);
  83. }
  84. })
  85. }
  86. switch (this.status) {
  87. case FULFILLED: {
  88. const newPromise = new MyPromise((resolve, reject) => fulFilledFnWithCatch(resolve, reject, newPromise));
  89. return newPromise;
  90. }
  91. case REJECTED: {
  92. const newPromise = new MyPromise((resolve, reject) => rejectedFnWithCatch(resolve, reject, newPromise));
  93. return newPromise;
  94. }
  95. case PENDING: {
  96. const newPromise = new MyPromise((resolve, reject) => {
  97. this.FULFILLED_CALLBACK_LIST.push(() => fulFilledFnWithCatch(resolve, reject, newPromise));
  98. this.REJECTED_CALLBACK_LIST.push(() => rejectedFnWithCatch(resolve, reject, newPromise));
  99. });
  100. return newPromise;
  101. }
  102. }
  103. }
  104. resolvePromise(newPromise, x, resolve, reject) {
  105. // 如果 newPromise 和 x 指向同一对象,以 TypeError 为据因拒绝执行 newPromise
  106. // 这是为了防止死循环
  107. if (newPromise === x) {
  108. return reject(new TypeError('The promise and the return value are the same'));
  109. }
  110. if (x instanceof MyPromise) {
  111. // 如果 x 为 Promise ,则使 newPromise 接受 x 的状态
  112. // 也就是继续执行x,如果执行的时候拿到一个y,还要继续解析y
  113. x.then((y) => {
  114. this.resolvePromise(newPromise, y, resolve, reject);
  115. }, reject);
  116. } else if (typeof x === 'object' || this.isFunction(x)) {
  117. // 如果 x 为对象或者函数
  118. if (x === null) {
  119. // null也会被判断为对象
  120. return resolve(x);
  121. }
  122. let then = null;
  123. try {
  124. // 把 x.then 赋值给 then
  125. then = x.then;
  126. } catch (error) {
  127. // 如果取 x.then 的值时抛出错误 e ,则以 e 为据因拒绝 promise
  128. return reject(error);
  129. }
  130. // 如果 then 是函数
  131. if (this.isFunction(then)) {
  132. let called = false;
  133. // 将 x 作为函数的作用域 this 调用
  134. // 传递两个回调函数作为参数,第一个参数叫做 resolvePromise ,第二个参数叫做 rejectPromise
  135. try {
  136. then.call(
  137. x,
  138. // 如果 resolvePromise 以值 y 为参数被调用,则运行 resolvePromise
  139. (y) => {
  140. // 需要有一个变量called来保证只调用一次.
  141. if (called) return;
  142. called = true;
  143. this.resolvePromise(newPromise, y, resolve, reject);
  144. },
  145. // 如果 rejectPromise 以据因 r 为参数被调用,则以据因 r 拒绝 promise
  146. (r) => {
  147. if (called) return;
  148. called = true;
  149. reject(r);
  150. });
  151. } catch (error) {
  152. // 如果调用 then 方法抛出了异常 e:
  153. if (called) return;
  154. // 否则以 e 为据因拒绝 promise
  155. reject(error);
  156. }
  157. } else {
  158. // 如果 then 不是函数,以 x 为参数执行 promise
  159. resolve(x);
  160. }
  161. } else {
  162. // 如果 x 不为对象或者函数,以 x 为参数执行 promise
  163. resolve(x);
  164. }
  165. }
  166. isFunction(param) {
  167. return typeof param === 'function';
  168. }
  169. catch(onRejected) {
  170. return this.then(null, onRejected);
  171. }
  172. }
  173. const test = new MyPromise((resolve, reject) => {
  174. setTimeout(() => {
  175. resolve('状态变化');
  176. }, 1000);
  177. }).then(console.log);
  178. console.log(test);
  179. setTimeout(() => {
  180. console.log(test);
  181. }, 2000)

image-20220127162813458

3、Promise其他扩展方法

3.1 Promise.resolve方法

将现有对象转为Promise对象,如果 Promise.resolve 方法的参数,不是具有 then 方法的对象(又称 thenable 对象),则返回一个新的 Promise 对象,且它的状态为fulfilled。

  1. static resolve(param) {
  2. if (param instanceof MyPromise) {
  3. return param;
  4. }
  5. return new MyPromise(function (resolve) {
  6. resolve(param);
  7. });
  8. }

3.2 Promise.reject方法

  1. static reject(reason) {
  2. return new MyPromise((resolve, reject) => {
  3. reject(reason);
  4. });
  5. }

3.3 promise.race方法

const p = MyPromise.race([p1, p2, p3]);

该方法是将多个 Promise 实例,包装成一个新的 Promise 实例。
只要p1、p2、p3之中有一个实例率先改变状态,p的状态就跟着改变。那个率先改变的 Promise 实例的返回值,就传递给p的回调函数。

  1. static race(promiseList) {
  2. return new MyPromise((resolve, reject) => {
  3. const length = promiseList.length;
  4. if (length === 0) {
  5. return resolve();
  6. } else {
  7. for (let i = 0; i < length; i++) {
  8. MyPromise.resolve(promiseList[i]).then(
  9. (value) => {
  10. return resolve(value);
  11. },
  12. (reason) => {
  13. return reject(reason);
  14. });
  15. }
  16. }
  17. });
  18. }

3.4 promise.all方法

const p = MyPromise.all([p1, p2, p3]);

该方法是将多个 Promise 实例,包装成一个新的 Promise 实例。
这个Promise的resolve回调执行是在所有输入的promise的resolve回调都结束,或者输入的iterable里没有promise了的时候。它的reject回调执行是,只要任何一个输入的promise的reject回调执行或者输入不合法的promise就会立即抛出错误,并且reject的是第一个抛出的错误信息。

  1. static all(promiseArray) {
  2. return new MyPromise(function (resolve, reject) {
  3. //判断参数类型
  4. if (!Array.isArray(promiseArray)) {
  5. return reject(new TypeError('arguments muse be an array'))
  6. }
  7. let counter = 0;
  8. let promiseNum = promiseArray.length;
  9. let resolvedArray = [];
  10. for (let i = 0; i < promiseNum; i++) {
  11. // 3. 这里为什么要用Promise.resolve?
  12. Promise.resolve(promiseArray[i]).then((value) => {
  13. counter++;
  14. resolvedArray[i] = value; // 2. 这里直接Push, 而不是用索引赋值, 有问题吗
  15. if (counter == promiseNum) { // 1. 这里如果不计算counter++, 直接判断resolvedArr.length === promiseNum, 会有问题吗?
  16. // 4. 如果不在.then里面, 而在外层判断, 可以吗?
  17. resolve(resolvedArray)
  18. }
  19. }).catch(e => reject(e));
  20. }
  21. })
  22. }

4、规范

回过头来我们再来看一遍规范:

  1. 参数要求

    • onFulfilled 必须是函数类型, 如果不是函数, 应该被忽略.
    • onRejected 必须是函数类型, 如果不是函数, 应该被忽略.
  2. onFulfilled 特性

    • 在promise变成 fulfilled 时,应该调用 onFulfilled, 参数是value
    • 在promise变成 fulfilled 之前, 不应该被调用.
    • 只能被调用一次(所以在实现的时候需要一个变量来限制执行次数)
  3. onRejected 特性

    • 在promise变成 rejected 时,应该调用 onRejected, 参数是reason
    • 在promise变成 rejected 之前, 不应该被调用.
    • 只能被调用一次(所以在实现的时候需要一个变量来限制执行次数)
  4. onFulfilled 和 onRejected 应该是微任务

    • 这里用queueMicrotask来实现微任务的调用.
  5. then方法可以被调用多次

    • promise状态变成 fulfilled 后,所有的 onFulfilled 回调都需要按照then的顺序执行, 也就是按照注册顺序执行(所以在实现的时候需要一个数组来存放多个onFulfilled的回调)
    • promise状态变成 rejected 后,所有的 onRejected 回调都需要按照then的顺序执行, 也就是按照注册顺序执行(所以在实现的时候需要一个数组来存放多个onRejected的回调)
  6. 返回值
    then 应该返回一个promise
    1. promise2 = promise1.then(onFulfilled, onRejected);
  • onFulfilled 或 onRejected 执行的结果为x, 调用 resolvePromise( 这里大家可能难以理解, 可以先保留疑问, 下面详细讲一下resolvePromise是什么东西 )
  • 如果 onFulfilled 或者 onRejected 执行时抛出异常e, promise2需要被reject
  • 如果 onFulfilled 不是一个函数, promise2 以promise1的value 触发fulfilled
  • 如果 onRejected 不是一个函数, promise2 以promise1的reason 触发rejected
    1. resolvePromise
      1. resolvePromise(promise2, x, resolve, reject)
  • 如果 promise2 和 x 相等,那么 reject TypeError
  • 如果 x 是一个 promsie

    • 如果x是pending态,那么promise必须要在pending,直到 x 变成 fulfilled or rejected.
    • 如果 x 被 fulfilled, fulfill promise with the same value.
    • 如果 x 被 rejected, reject promise with the same reason.
  • 如果 x 是一个 object 或者 是一个 function let then = x.then.

    • 如果 x.then 这步出错,那么 reject promise with e as the reason.
    • 如果 then 是一个函数,then.call(x, resolvePromiseFn, rejectPromise)

      • resolvePromiseFn 的 入参是 y, 执行 resolvePromise(promise2, y, resolve, reject);
      • rejectPromise 的 入参是 r, reject promise with r.
      • 如果 resolvePromise 和 rejectPromise 都调用了,那么第一个调用优先,后面的调用忽略。
      • 如果调用then抛出异常e

        • 如果 resolvePromise 或 rejectPromise 已经被调用,那么忽略则,reject promise with e as the reason
    • 如果 then 不是一个function. fulfill promise with x.

5、总结

本节我们实现了then方法,以及Promise的扩展方法,相信掌握本节知识点以后对Promise就不再陌生。