分类
发现
榜单
服务器优惠
AI论文
免费AI编程助手
搜索
注册
登录
分类
发现
榜单
服务器优惠
AI论文
免费AI编程助手
搜索
注册
登录
搜索
书栈网 · BookStack
本次搜索耗时
0.042
秒,为您找到
7154
个相关结果.
搜书籍
搜文档
Promise.prototype.catch()
6940
2020-06-04
《阮一峰 ECMAScript 6 (ES6) 标准入门教程 第三版》
Promise.prototype.catch() Promise.prototype.catch() Promise.prototype.catch() 方法是.then(null, rejection) 或.then(undefined, rejection) 的别名,用于指定发生错误时的回调函数。 getJSON ( '/posts.json...
16. Promise 对象
28680
2020-06-04
《阮一峰 ECMAScript 6 (ES6) 标准入门教程 第三版》
Promise 对象 Promise 对象 Promise 的含义 基本用法 Promise.prototype.then() Promise.prototype.catch() Promise.prototype.finally() Promise.all() Promise.race() Promise.allSettled() ...
14. Promise 对象
2359
2017-12-19
《阮一峰 ECMAScript 6 入门教程(201801)》
Promise 对象 Promise 的含义 基本用法 Promise.prototype.then() Promise.prototype.catch() Promise.all() Promise.race() Promise.resolve() Promise.reject() 两个有用的附加方法 done() finally() ...
创建 Stream 和 Promise
691
2019-10-10
《Reactor 指南中文版 V2.0》
创建 Stream 和 Promise 创建 Stream 和 Promise 如果你是数据源的拥有者,并且想要使其 Reactive 化,带有能直接访问各种 Reactive Extension 和 Reactive Stream 的能力,这里就是起点。 有时的情况是要使用 Stream 的 API 来扩展已经存在的 Reactive Stre...
1.2. Promise简介
620
2024-03-12
《JavaScript Promise迷你书》
1.2. Promise简介 1.2.1. Promise workflow 1.2.2. Promise的状态 1.2. Promise简介 在 ES6 Promises 标准中定义的API还不是很多。 目前大致有下面三种类型。 Constructor Promise类似于 XMLHttpRequest ,从构造函数 Promise ...
03 Promise 异步编程
1808
2018-07-12
《Hprose for PHP 用户手册》
概述 创建 Future/Promise 对象 使用 Future 构造器 创建一个待定(pending)状态 promise 对象 创建一个成功(fulfilled)状态的 promise 对象 创建一个失败(rejected)状态的 promise 对象 使用 Hprose\Future 名空间中的工厂方法 创建一个成功(fulfilled)状...
2.10 Catch unhandled promise rejections
582
2021-01-03
《Node.js Best Practices》
Catch unhandled promise rejections One Paragraph Explainer Code example: these errors will not get caught by any error handler (except unhandledRejection) Code example: Catching ...
5.5. Promise.all
153
2024-03-12
《JavaScript Promise迷你书》
5.5. Promise.all 5.5. Promise.all Promise . all ( promiseArray ); Promise.all代码示例 var p1 = Promise . resolve ( 1 ), p2 = Promise . resolve ( 2 ), p3 = ...
2.8. Promise.all
173
2024-03-12
《JavaScript Promise迷你书》
2.8. Promise.all 2.8. Promise.all Promise.all 接收一个 promise对象的数组作为参数,当这个数组里的所有promise对象全部变为resolve或reject状态的时候,它才会去调用 .then 方法。 前面我们看到的批量获得若干XHR的请求结果的例子,使用 Promise.all 的话代码会非...
5.6. Promise.race
122
2024-03-12
《JavaScript Promise迷你书》
5.6. Promise.race 5.6. Promise.race Promise . race ( promiseArray ); Promise.race代码示例 var p1 = Promise . resolve ( 1 ), p2 = Promise . resolve ( 2 ), p3 ...
1..
«
6
7
8
9
»
..100