最新发布 第501页

完竣世界-关注前端分享心得

js

promise 错误处理 catch

promise 错误处理 catch
Promise 会自动捕获内部异常,并交给 rejected响应函数处理。 console.log('here we go'); new Promise(resolve => { setTimeout(() => { throw...

yekong 3年前 (2021-08-30) 喜欢

js

.then()里有.then()的情况

.then()里有.then()的情况
因为.then() 返回的还是 Promise 实例。 会等里面的.then()执行完,在执行外面的。 对于我们来说,此时最好将其展开,会更好读。 ...

yekong 3年前 (2021-08-30) 喜欢

js

.then()的一些特点

.then()的一些特点
.then() 接受两个函数作为参数,分别代表 fuifilled 和 rejected then() 返回一个新的 Promise 实例,所以它以链式调用 普前面的 Promise 状态改变时,.then() 根据其最终状态,选择特定的状态响应函数执行 状态响应函数可以返回新的...

yekong 3年前 (2021-08-30) 喜欢

js

Promise介绍

Promise介绍
new Promise( /* 执行器 eXecutor */ function (resolve, reject){ resolve();//数据处理完成 reject();//数据处理出错 .then(function A() { // 成功, 下一步 }, ...

yekong 3年前 (2021-08-29) 喜欢

js

异步回调的问题

异步回调的问题
稍有不慎,就会踏入“回调地城” 回调有四个问题 嵌套层次很深,难以维护 无法正常使用 return 和 throw 无法正常检索堆栈信息 多个回调之间难以建立联系 ...

yekong 3年前 (2021-08-29) 喜欢