手写实现一个简易版promise

2021-08-18  本文已影响0人  前端Tree
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>极简版promise</title>
</head>
<body>
    <h1>
      极简版promise
    </h1>

    <script>
      function promise() {
        this.status = 'penging'
        this.msg = '' // 储存value与reson
        console.log("argumen------------------ts",arguments)
        let process = arguments[0], // 就是 new promise的函数
         that = this
         process( function () {
          that.status = 'resolve'
          that.msg = arguments[0]
         },function () {
          that.status = 'reject'
          that.msg = arguments[0]
         })
         return this
      }
      promise.prototype.then = function () {
        if(this.status === 'resolve') {
           arguments[0](this.msg)
           return this.msg
        }
        
      }

          // 封装promise代码
      function doSomething (val) {
        return new promise ( (resolve) => {
          resolve(val)
        })
      }
     
      doSomething('我是参数-then').then(res => {
        console.log("--------------",res)
      })

        // 测试
      add()
      async function add() {
        const res = await doSomething('我是参数')
        console.log('res',res)
      }


      // 正版promise
      
      const p1 = new Promise( (resolve,reject) => {
        if(Math.random()> 0.5){
          resolve('我是resolve')
        }else {
          reject('我是reject')
        }
      })
      console.log("p1",p1)

    </script>
</body>
</html>

上一篇 下一篇

猜你喜欢

热点阅读