代码拉取完成,页面将自动刷新
同步操作将从 晴转阴/fe-handwriting 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
/**
* 手写Promise
*
* 状态机对象
*
* 状态对象 + 链式调用 + 异步
*/
class MyPromise {
// 状态对象 + 异步
constructor (exe) {
this.value = undefined
this.status = 'pending'
this.successQueue = [] // node:存在两种想法,想法1:首个promise包含后面所有的回调队列;
// 想法2: 每个promise都有指向下一个promise的链接,每个promise有独立的一个成功回调/失败回调
this.failureQueue = []
const resolve = (val) => {
const doResolve = (value) => {
if (this.status === 'pending') {
this.status = 'success'
this.value = value
while (this.successQueue.length) {
const cb = this.successQueue.shift()
cb && cb(this.value)
}
}
}
setTimeout(()=>doResolve(val), 0)
}
const reject = (err) => {
const doReject = (value) => {
if (this.status === 'pending') {
this.status = 'failure'
this.value = value
while (this.failureQueue.length) {
const cb = this.failureQueue.shift()
cb && cb(this.value)
}
}
}
setTimeout(()=>doReject(err), 0)
}
exe(resolve, reject)
}
// 链式调用
then (success = (value) => value, failure = (value) => value) {
return new MyPromise((resolve, reject) => {
// 分别包装 then的成功回调
const successFn = (value) => {
try {
const result = success(value)
// 若then返回的依然是promise对象,那么返回一个新的promise,新的promise和此promise状态一致;
// 这里直接把当前promise 的resolve, reject传给了新promise的回调回调队列
result instanceof MyPromise ? result.then(resolve, reject) : resolve(result)
} catch (err) {
reject(err)
}
}
// 分别包装 then的时代回调
const failureFn = (value) => {
try {
const result = failure(value)
result instanceof MyPromise ? result.then(resolve, reject) : resolve(result)
} catch (err) {
reject(err)
}
}
if (this.status === 'pending') {
this.successQueue.push(successFn)
this.failureQueue.push(failureFn)
} else if (this.status === 'success') {
success(this.value) //这里已经是成功状态了,直接执行用户的回调;注意return new MyPromise()是顶层代码
} else {
failure(this.value)
}
})
}
catch () {
}
}
// 测试代码
const pro = new MyPromise((resolve, reject) => {
setTimeout(resolve, 1000)
setTimeout(reject, 2000)
})
pro
.then(() => {
console.log('2_1')
const newPro = new MyPromise((resolve, reject) => {
console.log('2_2')
setTimeout(()=>resolve('hello'), 2000)
})
console.log('2_3')
return newPro
})
.then(
(str) => {
console.log('2_4', str)
},
() => {
console.log('2_5')
}
)
pro
.then(
data => {
console.log('3_1')
throw new Error()
},
data => {
console.log('3_2')
}
)
.then(
() => {
console.log('3_3')
},
e => {
console.log('3_4')
}
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。