We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
// 模拟一个降级异步接口 const isDegrade = (isDegrade) => { return new Promise((resolve, reject) => { setTimeout(() => { reject(isDegrade) }, 1000) }) } const requestA = async () => { return new Promise((resolve, reject) => { setTimeout(() => { resolve('requestA') }, 2000) }) } const main = async () => { console.time('main') const degrade = await isDegrade(false) if (degrade) { return } const res = await requestA() console.log(res) console.timeEnd('main') } // 实现一个有依赖关系的 Promise all const main2 = async () => { console.time('main2') const degradePromise = new Promise((resolve) => { isDegrade(true).then(resolve, () => resolve(false)) }) const requestAPromise = requestA() const res = await new Promise((resolve) => { degradePromise.then((res) => { // 如果要降级 if (res) { resolve(null) } }) requestAPromise.then(async (res) => { await degradePromise resolve(res) }) }) if (!res) { return } console.log(res) console.timeEnd('main2') } // main() // main2() const buildMainInvokeWithDegrade = (degradePromise: Promise<any>, requestAPromise: Promise<any>) => { const finalDegradePromise = new Promise((resolve) => { degradePromise.then(resolve, () => resolve(false)) }) return new Promise((resolve) => { finalDegradePromise.then((res) => { // 如果要降级 if (res) { resolve(null) } }) requestAPromise.then(async (res) => { await finalDegradePromise resolve(res) }) }) } const main3 = async () => { console.time('main3') const res = await buildMainInvokeWithDegrade(isDegrade(true), requestA()) console.log(res) console.timeEnd('main3') } main3()
The text was updated successfully, but these errors were encountered:
yiyang-fairy/blog#4
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: