书栈网 · BookStack 本次搜索耗时 0.042 秒,为您找到 7154 个相关结果.
  • Promise.prototype.catch()

    Promise.prototype.catch() Promise.prototype.catch() Promise.prototype.catch() 方法是.then(null, rejection) 或.then(undefined, rejection) 的别名,用于指定发生错误时的回调函数。 getJSON ( '/posts.json...
  • 16. Promise 对象

    Promise 对象 Promise 对象 Promise 的含义 基本用法 Promise.prototype.then() Promise.prototype.catch() Promise.prototype.finally() Promise.all() Promise.race() Promise.allSettled() ...
  • 14. Promise 对象

    Promise 对象 Promise 的含义 基本用法 Promise.prototype.then() Promise.prototype.catch() Promise.all() Promise.race() Promise.resolve() Promise.reject() 两个有用的附加方法 done() finally() ...
  • 创建 Stream 和 Promise

    创建 Stream 和 Promise 创建 Stream 和 Promise 如果你是数据源的拥有者,并且想要使其 Reactive 化,带有能直接访问各种 Reactive Extension 和 Reactive Stream 的能力,这里就是起点。 有时的情况是要使用 Stream 的 API 来扩展已经存在的 Reactive Stre...
  • 1.2. 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 异步编程

    概述 创建 Future/Promise 对象 使用 Future 构造器 创建一个待定(pending)状态 promise 对象 创建一个成功(fulfilled)状态的 promise 对象 创建一个失败(rejected)状态的 promise 对象 使用 Hprose\Future 名空间中的工厂方法 创建一个成功(fulfilled)状...
  • 2.10 Catch unhandled promise rejections

    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

    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

    2.8. Promise.all 2.8. Promise.all Promise.all 接收一个 promise对象的数组作为参数,当这个数组里的所有promise对象全部变为resolve或reject状态的时候,它才会去调用 .then 方法。 前面我们看到的批量获得若干XHR的请求结果的例子,使用 Promise.all 的话代码会非...
  • 5.6. Promise.race

    5.6. Promise.race 5.6. Promise.race Promise . race ( promiseArray ); Promise.race代码示例 var p1 = Promise . resolve ( 1 ), p2 = Promise . resolve ( 2 ), p3 ...