1. Promise就是一个类,在执行这个类的时候需要传递一个执行器进去,执行器会立即执行
    2. Promise中有三种状态,分别为成功fulfilled、失败rejected以及等待pending
      • pending -> fulfilled
      • pending -> rejected
      • resolve:fuifilled
    3. pending -> rejected
      • resolve:fuifilled
      • reject:rejected
    4. then方法内部做的事情就判断状态,如果状态是成功则调用成功的回调函数,如果状态是失败则调用失败的回调函数,then方式是被定义在原型对象中的
    5. then成功回调有一个参数,表示成功之后的值,then失败回调有一个参数,表示失败后的原因
    6. 同一个promise对象下面的then方法是可以被调用多次的
    7. then方法是可以被链式调用的, 后面then方法的回调函数拿到值的是上一个then方法的回调函数的返回值
    1. const PENDING = "pending";
    2. const FULFILLED = "fulfilled";
    3. const REJECTED = "rejected";
    4. class MyPromise {
    5. constructor(executor) {
    6. try {
    7. executor(this.resolve, this.reject);
    8. } catch {
    9. this.reject(e);
    10. }
    11. }
    12. // promise 状态
    13. status = PENDING;
    14. // 成功之后的值
    15. value = undefined;
    16. // 失败之后的原因
    17. reason = undefined;
    18. // 成功回调
    19. successCallback = [];
    20. // 失败回调
    21. failCallback = [];
    22. resolve = (value) => {
    23. // 如果状态不是等待,阻止代码向下执行
    24. if (this.status !== PENDING) return;
    25. // 将状态变更为成功
    26. this.status = FULFILLED;
    27. // 保存成功之后的值
    28. this.value = value;
    29. // 判断成功回调是否存在,如果存在则调用
    30. // this.successCallback && this.successCallback(this.value)
    31. while (this.successCallback.length) this.successCallback.shift()();
    32. };
    33. reject = (reason) => {
    34. // 如果状态不是等待,阻止代码向下执行
    35. if (this.status !== PENDING) return;
    36. // 将状态变更为失败
    37. this.status = REJECTED;
    38. // 保存失败之后的原因
    39. this.reason = reason;
    40. // 判断失败回调是否存在,如果存在则调用
    41. // this.failCallback && this.successCallback(this.reason)
    42. while (this.failCallback.length) this.failCallback.shift()();
    43. };
    44. then(successCallback, failCallback) {
    45. successCallback = successCallback ? successCallback : value => value
    46. failCallback = failCallback ? failCallback : reason => {throw reason}
    47. let promise2 = new MyPromise((resolve, reject) => {
    48. // 判断状态
    49. if (this.status === FULFILLED) {
    50. setTimeout(() => {
    51. try {
    52. let x = successCallback(this.value);
    53. // 判断 x 的值是普通值还是promise对象
    54. // 如果是普通值则直接调用resolve
    55. // 如果是promise对象,查看promise对象返回的结果
    56. // 再根据promise对象返回的结果,决定调用resolve还是调用reject
    57. resolvePromise(promise2, x, resolve, reject);
    58. } catch(e) {
    59. reject(e);
    60. }
    61. }, 0);
    62. } else if (this.status === REJECTED) {
    63. setTimeout(() => {
    64. try {
    65. let x = failCallback(this.reason);
    66. // 判断 x 的值是普通值还是promise对象
    67. // 如果是普通值则直接调用resolve
    68. // 如果是promise对象,查看promise对象返回的结果
    69. // 再根据promise对象返回的结果,决定调用resolve还是调用reject
    70. resolvePromise(promise2, x, resolve, reject);
    71. } catch(e) {
    72. reject(e);
    73. }
    74. }, 0);
    75. } else {
    76. // 等待
    77. // 将成功回调和失败回调存储起来
    78. this.successCallback.push(() => {
    79. setTimeout(() => {
    80. try {
    81. let x = successCallback(this.value);
    82. // 判断 x 的值是普通值还是promise对象
    83. // 如果是普通值则直接调用resolve
    84. // 如果是promise对象,查看promise对象返回的结果
    85. // 再根据promise对象返回的结果,决定调用resolve还是调用reject
    86. resolvePromise(promise2, x, resolve, reject);
    87. } catch(e) {
    88. reject(e);
    89. }
    90. }, 0);
    91. });
    92. this.failCallback.push(() => {
    93. setTimeout(() => {
    94. try {
    95. let x = failCallback(this.reason);
    96. // 判断 x 的值是普通值还是promise对象
    97. // 如果是普通值则直接调用resolve
    98. // 如果是promise对象,查看promise对象返回的结果
    99. // 再根据promise对象返回的结果,决定调用resolve还是调用reject
    100. resolvePromise(promise2, x, resolve, reject);
    101. } catch(e) {
    102. reject(e);
    103. }
    104. }, 0);
    105. });
    106. }
    107. });
    108. return promise2;
    109. }
    110. }
    111. function resolvePromise(promise2, x, resolve, reject) {
    112. if (promise2 === x) {
    113. return reject(
    114. new TypeError("Chaining cycle detected for promise #<Promise>")
    115. );
    116. }
    117. if (x instanceof MyPromise) {
    118. // promise 对象
    119. // x.then(value=>resolve(value),reason=>reject(reason))
    120. x.then(resolve, reject);
    121. } else {
    122. // 普通值
    123. resolve(x);
    124. }
    125. }
    126. module.exports = MyPromise;