Promise实现

本文详细介绍了JavaScript中的Promise类的实现,包括其状态机、构造函数、resolve、reject方法以及then和catch的处理机制。通过实例展示了如何创建、链式调用和错误处理Promise对象。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

Promise实现

const PENDING = 'pending'
const FULFILLED = 'fulfilled'
const REJECTED = 'rejected'

class MPromise {
   
	FULFILLED_CALLBACK_LIST = []
	REJECTED_CALLBACK_LIST = []
	_status = PENDING
	constructor(fn) {
   
		// 初始状态为pending
		this.status = PENDING
		this.value = null
		this.reason = null
		try {
   
			fn(this.resolve.bind(this), this.reject.bind(this))
		} catch (e) {
   
			this.reject(e)
		}
	}

	get status() {
   
		return this._status
	}

	set status(newStatus) {
   
		this._status = newStatus
		switch (newStatus) {
   
			case FULFILLED: {
   
				this.FULFILLED_CALLBACK_LIST.forEach((callback) => {
   
					callback(this.value)
				})
				break
			}
			case REJECTED: {
   
				this.REJECTED_CALLBACK_LIST.forEach((callback) => {
   
					callback(this.reason)
				})
				break
			}
		}
	}

	resolve(value) {
   
		if (this.status === PENDING) {
   
			this.value = value
			this.status = FULFILLED
		
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值