道可道,非常道——详解promise
promise 出来已久,以前一直使用,没有仔细剖析原理,最近在复习es6的知识,写一下自己对于promise的理解。
promise是es6的一种异步编程解决方案,避免频繁的回调函数,增强代码的可阅读性。
写法很简单:
let p2 = new Promise((reslove, reject) => {
reslove(1)
}) console.log(p2.then(res => {
alert(res)
}))
Promise是内置的构造函数,reslove、reject是固定的,只能这么写。reslove()表示成功,reject()表示失败。
方法:
- then() then是Promise的核心方法,是用来获取异步的返回结果。有两个参数用来获取reslove 或 reject 的值。
- catch() 用来捕获异常。
- all() 多个promise,所有的参与的promise对象全部执行完才会出结果。参数为类数组对象。
- race() 参数为类数组对象,任何一个参与的promise对象执行完,就会出结果。
以上为常用的四个方法。
代码:
/*
*
* promise
* 异步编程的一种解决方案。
*
* */
const promise = new Promise(function (reslove, reject) {
console.log('开始')
setTimeout(function () {
reslove(2)
}, 3000)
}) promise.then(function (value) {
return 3;
}).then(function (value) { }) //
let p = new Promise((reslove, reject) => {
setTimeout(()=>{
let a = Math.random();
if (a>0.5) {
//reslove(a); // 这里说白了是就是调用下面的then中的函数 a
reslove.call(null, a) // 这样也行
} else { reject(a) // 调用b
}
reject(a) // 调用b
}, 1000)
}) p.then(res => { // 假设这是函数a
return res;
}, rej => { // 函数b
return rej;
}).then(success => { // 链式调用的重点是前边的then必须return 否则 为undefined
return success;
}, fail => {
return fail;
}) // then() then方法是挂在Promise.prototype上的
console.log(Promise.prototype) // Promise {constructor: ƒ, then: ƒ, catch: ƒ, finally: ƒ, Symbol(Symbol.toStringTag): "Promise"} // catch() 相当于 then(null, reject)
p.then(rel => {
console.log(rel)
return rel;
},rej => {
console.log(rej + '小')
return rej;
}).then(rel => { // 前一个then返回成功或失败都在这里 因为执行catch()后返回一个新的实例该实例该实例执行完之后会变为reslove ,因此后边的catch始终执行不到
console.log(rel)
alert(2)
}).catch(rej => { // 这句是走不到的
console.log(rej)
alert(1)
console.log('二小')
}) // finally() 状态成功或失败 都会执行此操作
let p1 = new Promise((reslove, reject) => {
console.log(this) // window 箭头函数本身没有this 因此this指向定义箭头函数时的上下文
reslove(1);
}) p1.then(res => {
console.log('success')
}).finally(res => {
console.log('finally')
}) // all() 所有实例的状态都改变完才改变
let p2 = new Promise((reslove, reject) => {
setTimeout(() => {
alert(1)
reslove(1)
} ,1000)
}) let p3 = new Promise((reslove, reject) => {
setTimeout(() => {
alert(2)
reslove(2)
} ,2000)
}) let p4 = new Promise((reslove, reject) => {
setTimeout(() => {
alert(3)
reject(3)
} ,3000)
})
Promise.all([p2, p3]).then(res => {
console.log(res) // [1, 2]
}) Promise.all([p2, p3, p4]).then(res => {
console.log(res)
}).catch(rej => {
console.log(rej) // 3 只要有一个reject 就走这里 不走上边的then 返回的永远是第一个reject的promise实例
})
// race()
Promise.race([p2, p3]).then(res => {
console.log(res) // 1
})
下面是手写的实现promise的原理:
// 实现 promise
function MyPromise(fn){ // fn 为 new Promise(fn)
let _this = this;
_this.status = 'pending';
_this.resloveValue = null; // 成功时的数据
_this.rejectValue = null; // 失败时的数据
_this.resloveFnCallbacks = [];
_this.rejectFnCallbacks = []; function reslove(value) {
if (_this.status == 'pending') {
_this.status = 'resloved';
_this.resloveValue = value;
_this.resloveFnCallbacks.forEach(fn => fn())
}
}
function reject(value) {
if (_this.status == 'pending') {
_this.status = 'rejected';
_this.rejectValue = value;
_this.rejectFnCallbacks.forEach(fn => fn())
} }
// 捕获异常
try{
fn(reslove, reject)
} catch (e) {
reject(e)
} } // then() 应该接受两个参数 成功 或 失败的 回调
MyPromise.prototype.then = function (resloveFn, rejectFn) {
let _this = this;
let promise2; // then 返回的promise // 参数非函数转为函数
resloveFn = typeof resloveFn === 'function'? resloveFn: (function (value) {
return value;
}) rejectFn = typeof rejectFn === 'function'? rejectFn: function (err) {
throw err;
} if(this.status == 'resloved') { // 成功
alert(3)
promise2 = new MyPromise((reslove, reject) => {
setTimeout(() => {
let x = resloveFn(this.resloveValue);
resolvePromise(promise2, x, reslove, reject);
})
})
} if(this.status == 'rejected') { // 失败
rejectFn(this.rejectValue)
} if (this.status == 'pending') {
this.resloveFnCallbacks.push(function(){
resloveFn(_this.resloveValue)
})
this.rejectFnCallbacks.push(function(){
rejectFn(_this.rejectValue)
})
} return promise2; // resolvePromise
function resolvePromise(promise2, x, reslove, reject) {
let called; // 是否调用过 // 判断上一次then返回的值 实质上下一个then只需要一个值便可以,所以我们就是要将上一个的peomise中的值提取出来
// then 返回promise只是为了链式调用,then本身需要一个实际的值,并不需要promise
if (x != null && (typeof x === 'object' || typeof x === 'function')) {
try {
let then = x.then; // 保存x的then方法 这种是x是对象
if (typeof then === 'function') {
then.call(x, function (y) {
if (called) return;
called = true;
resolvePromise(promise2, y, reslove, reject)
}, function (rej) {
if (called) return;
called = true;
reject(rej) })
} else { // x 是普通对象直接返回就行
reslove(x);
}
} catch (e) {
if (called) return;
called = true;
reject(e)
}
} else { // x 是普通值
reslove(x)
}
} } // 将promise
let p6 = new MyPromise(function(reslove, reject) {
reslove(2)
})
p6.then(function(res){
return res;
}).then(function(res){
alert(res)
})
参考链接:https://juejin.im/post/5ab20c58f265da23a228fe0f
道可道,非常道——详解promise的更多相关文章
- “全栈2019”Java第七十三章:外部类里多个静态非静态内部类详解
难度 初级 学习时间 10分钟 适合人群 零基础 开发语言 Java 开发环境 JDK v11 IntelliJ IDEA v2018.3 文章原文链接 "全栈2019"Java第 ...
- [GO语言的并发之道] Goroutine调度原理&Channel详解
并发(并行),一直以来都是一个编程语言里的核心主题之一,也是被开发者关注最多的话题:Go语言作为一个出道以来就自带 『高并发』光环的富二代编程语言,它的并发(并行)编程肯定是值得开发者去探究的,而Go ...
- 详解promise、async和await的执行顺序
1.题目和答案 一道题题目:下面这段promise.async和await代码,请问控制台打印的顺序? async function async1(){ console.log('async1 sta ...
- PHP中静态(static)调用非静态方法详解
1.PHP中可以静态调用非静态方法么? 今天我被问到PHP中可不可以使用 className::methodName() 的方法来调用一个没有声明static的方法.在我的印象中,我好像是见过这种用法 ...
- static静态和非静态详解
static 作为Java中的一个关键字,用于修饰方法.成员变量(Field),统称为成员. 有static修饰的成员 属于类 1.方法称为静态方法(类方法),Field称为类的属性. 2.静态成 ...
- PHP中静态(static)调用非静态方法详解--调用!!!
来源:https://www.cnblogs.com/yolo-bean/p/7739265.html 这里分析了php面向对象中static静态属性和静态方法的调用.关于它们的调用(能不能调用,怎么 ...
- Promise和async await详解
本文转载自Promise和async await详解 Promise 状态 pending: 初始状态, 非 fulfilled 或 rejected. fulfilled: 成功的操作. rejec ...
- es6的promise用法详解
es6的promise用法详解 promise 原理 promise是es6的异步编程解决方案, 是es6封装好的对象: 一个promise有三种状态:Pending(进行中).Resolved(已完 ...
- 详解收发不畅原因及U-Mail邮件中继解决之道
邮件在商务往来中扮演着信息交流的重要角色,假如传输受阻,必将造成沟通不畅:可能三五封邮件的投递你意识不到其重要性,但假如长期需和客户保持沟 通,则需要保证其一贯的稳定性,这就很考验相关软件平台的性能是 ...
随机推荐
- Cesium剖面分析
- Filecoin:募资详情和Token分发详情
基本情况 总数:20亿枚 参与资格:美国合格投资人身份认证(采用与IPO相同的流程,以确保合法性) 爱西欧占比:10%(2亿枚) 爱西欧总金额:2.57亿美元 私募 时间:2017.7.21~2017 ...
- kubernetes关键概念总结
service 每个service对应一个cluster IP,cluster IP对应的服务网段最初是在配置kube-apiserver.kube-controller-manager和kube-p ...
- Learn Plan
2018-02-05 1.正则表达式的熟悉和使用 2.Spring-boot 框架的使用 3.React的如何和使用 4.英语的单词发音的纠正和词汇的记忆. 5.github 命令行的使用 6.jav ...
- java swing 下拉框与文本框
import java.awt.*; import javax.swing.*; import javax.swing.border.*; import java.awt.event.*; publi ...
- ASP.NET MVC编程——缓存
Web缓存分为服务端缓存和客户端缓存. 1 服务端缓存 1.1请求域内的缓存:HttpContext.Items 类型: HttpContext.Items的类型为IDictionary,且键和值都是 ...
- Algorithm --> 矩阵链乘法
动态规划--矩阵链乘法 1.矩阵乘法 Note:只有当矩阵A的列数与矩阵B的行数相等时A×B才有意义.一个m×r的矩阵A左乘一个r×n的矩阵B,会得到一个m×n的矩阵C. #include ...
- java排序算法(九):归并排序
java排序算法(九):归并排序
- Matlab绘图基础——绘制三维曲线
%% 绘制三维曲线 %plot3函数,其中每一组x,y,z组成一组曲线的坐标参数,选项的定义和plot函数相同. %1.当x,y,z是同维向量时,则x,y,z 对应元素构成一条三维曲线. x0 = 0 ...
- JavaScript(第五天)【流程控制语句】
ECMA-262规定了一组流程控制语句.语句定义了ECMAScript中的主要语法,语句通常由一个或者多个关键字来完成给定的任务.诸如:判断.循环.退出等. 一.语句的定义 在ECMAScri ...