美文网首页
手写实现一个简易版promise

手写实现一个简易版promise

作者: 前端Tree | 来源:发表于2021-08-18 09:33 被阅读0次
<!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>

相关文章

网友评论

      本文标题:手写实现一个简易版promise

      本文链接:https://www.haomeiwen.com/subject/fptgbltx.html