JavaScript-Promise
# Promise含义
异步编程的一种解决方案
解决方案——回调函数和事件
# Promise状态
pending(进行中)
fulfilled (已成功)
rejected(已失败)
# then方法
then 方法接收两个函数作为参数,第一个参数是 Promise 执行成功时的回调,第二个参数是 Promise 执行失败时的回调,两个函数只会有一个被调用。
const p = new Promise(function(resolve,reject){
resolve('success');
});
p.then(function(value){
console.log(value);
})
1
2
3
4
5
6
7
2
3
4
5
6
7
上次更新: 2024/08/14, 04:14:33