手寫一個Promise

promise Promise對象表明一個異步操做,有三種狀態:pending(進行中)、fulfilled(已成功)和rejected(已失敗)。一旦成功就不容許失敗,一旦失敗就不容許成功。git function Promise(excutor) { let self = this self.status = 'pending' self.value = null self.r
相關文章
相關標籤/搜索