当前位置:网站首页>Promise 2: Key Questions
Promise 2: Key Questions
2022-08-03 09:36:00 【Want to buy food】
1. 如何改变 promise 的状态?
(1) resolve(value): 如果当前是 pending 就会变为 resolved
(2) reject(reason): 如果当前是 pending 就会变为 rejected
(3) 抛出异常: 如果当前是 pending 就会变为 rejected
2. 一个 promise 指定多个成功/失败回调函数, 都会调用吗?
当 promise 改变为对应状态时都会调用
let p = new Promise((resolve, reject) => {
// resolve('OK');
});
///指定回调 - 1
p.then(value => {
console.log(value);
});
//指定回调 - 2
p.then(value => {
alert(value);
});
3. 改变 promise 状态和指定回调函数谁先谁后?
(1) 都有可能, 正常情况下是先指定回调再改变状态, 但也可以先改状态再指定回调(When the task in the executor is a synchronous task,直接执行resolve 或 reject 改变状态,然后再then方法指定回调)
(2) 如何先改状态再指定回调?
① 在执行器中直接调用 resolve()/reject()
② 延迟更长时间才调用 then()
let p = new Promise((resolve, reject) => {
resolve('OK');
});
p.then(value => {
console.log(value);
},reason=>{
})
// 先执行回调,再改变状态
let p = new Promise((resolve, reject) => {
setTimeout(() => {
resolve('OK');
}, 1000);
});
p.then(value => {
console.log(value);
},reason=>{
})
(3) 什么时候才能得到数据(回调函数什么时候执行)?
① 如果先指定的回调, 那当状态发生改变时, 回调函数才会调用, 得到数据
② 如果先改变的状态, 那当指定回调时, 回调函数就会调用, 得到数据
4. promise.then()返回的新 promise 的结果状态由什么决定?
(1) 简单表达: 由 then()指定的回调函数执行的结果决定
(2) 详细表达:
① 如果抛出异常, 新 promise 变为 rejected, reason 为抛出的异常
② 如果返回的是非 promise 的任意值, 新 promise 变为 resolved, value 为返回的值,如果没有返回值,新的promise值会变为 resolved,此时输出promise的值为 undefined
③ 如果返回的是另一个新 promise, 此 promise 的结果就会成为新 promise 的结果
5. promise 如何串连多个操作任务?
(1) promise 的 then()返回一个新的 promise, 可以开成 then()的链式调用
(2) 通过 then 的链式调用串连多个同步/异步任务
let p = new Promise((resolve, reject) => {
setTimeout(() => {
resolve('OK');
}, 1000);
});
p.then(value => {
return new Promise((resolve, reject) => {
resolve("success");
});
}).then(value => {
console.log(value);
}).then(value => {
console.log(value);
})
// promise success
// undefined
//.thendoes returnpromise对象,But the value of this object is determined by the value returned by the callback,There is no return value declared here,所以返回undefined,那么下一个then获取到的值就是undefined,直接打印出来
6. promise 异常传透?
(1) 当使用 promise 的 then 链式调用时, 可以在最后指定失败的回调,
(2) 前面任何操作出了异常, 都会传到最后失败的回调中处理
let p = new Promise((resolve, reject) => {
setTimeout(() => {
resolve('OK');
// reject('Err');
}, 1000);
});
p.then(value => {
// console.log(111);
throw '失败啦!';
}).then(value => {
console.log(222);
}).then(value => {
console.log(333);
}).catch(reason => {
console.warn(reason);
});
// 失败啦
7. 中断 promise 链?
(1) 当使用 promise 的 then 链式调用时, 在中间中断, 不再调用后面的回调函数
(2) 办法: 在回调函数中返回一个 pendding 状态的 promise 对象
let p = new Promise((resolve, reject) => {
setTimeout(() => {
resolve('OK');
}, 1000);
});
p.then(value => {
console.log(111);
//有且只有一个方式
return new Promise(() => {});
}).then(value => {
console.log(222);
}).then(value => {
console.log(333);
}).catch(reason => {
console.warn(reason);
});
// 111
边栏推荐
- select statement in go
- ImportError: DLL load failed with error code -1073741795
- Go Redis database operation
- 10 Convolutional Neural Networks for Deep Learning 2
- ClickHouse删除数据之delete问题详解
- 110 MySQL interview questions and answers (continuous updates)
- Mysql OCP 27题
- Scrapy + Selenium 实现模拟登录,获取页面动态加载数据
- LINGO 18.0软件安装包下载及安装教程
- 【LeetCode】101. Symmetric Binary Tree
猜你喜欢
随机推荐
STP和RSTP的BPDU报文中flag位 对比+分析
Redis cluster concept and construction
MySQL_关于JSON数据的查询
Cartesi 2022 年 7 月回顾
【网络安全】Kail操作系统
Promise 一: 基本问题
Can't get data for duplicate urls using Scrapy framework, dont_filter=True
播放量暴涨2000w+,单日狂揽24w粉,内卷的搞笑赛道还有机会
php中去重二维数组
索引(三)
bihashSummary
MySQL的分页你还在使劲的limit?
响应式布局经典范例——巨幅背景大标题
函数指针数组
删除文件夹时,报错“错误ox80070091:目录不是空的”,该如何解决?
Industry SaaS Microservice Stability Guarantee Actual Combat
Index (3)
Mysql OCP 29题
STP普通生成树安全特性— bpduguard特性 + bpdufilter特性 + guard root 特性 III loopguard技术( 详解+配置)
Let‘s Encrypt 使用