书栈网 · BookStack 本次搜索耗时 0.019 秒,为您找到 1234 个相关结果.
  • Summary

    Summary Summary Promises are designed to improve asynchronous programming in JavaScript by giving you more control and composability over asynchronous operations than events an...
  • 并发

    并发 用 Promises 替代回调 Async/Await 是较 Promises 更好的选择 并发 用 Promises 替代回调 回调不够整洁并会造成大量的嵌套。ES6 内嵌了 Promises,使用它吧。 反例 : require ( 'request' ). get ( 'https://en.wikipedia.org/w...
  • Promise Basics

    Promise Basics The Promise Lifecycle Creating Unsettled Promises Creating Settled Promises Using Promise.resolve() Using Promise.reject() Non-Promise Thenables Executor Error...
  • Concurrency

    Concurrency Use Promises, not callbacks Async/Await are even cleaner than Promises Concurrency Use Promises, not callbacks Callbacks aren’t clean, and they cause excessiv...
  • 4.1. Promise的实现类库(Library)

    4.1. Promise的实现类库(Library) 4.1.1. 为什么需要这些类库? 4.1.2. Polyfill和扩展类库 Polyfill Promise扩展类库 4.1.3. 总结 4.1. Promise的实现类库(Library) 在本小节里,我们将不打算对浏览器实现的Promise进行说明,而是要介绍一些第三方实现的和Pro...
  • Node.js Promise/a+实现

    Node.js Promise/a+实现 Node.js 内置promise说明 Node.js的promise库 替换bluebird Promisification 参考阅读 Node.js Promise/a+实现 Node.js 内置promise说明 从0.12开始部分支持,到4.0支持绝大部分了。 但性能比较低,所以一...
  • 38. Async functions

    38. Async functions 38.1. Async functions: the basics 38.1.1. Async constructs 38.1.2. Async functions always return Promises 38.1.3. Returned Promises are not wrapped 38.1.4. a...
  • Promise规范

    1079 2018-07-17 《前端工程师手册》
    Promise规范 Promise的状态 Then 方法 Promise 解决程序 参考资料 Promise规范 从历史上说, Promises/A+ 规范将之前 Promises/A 规范的建议明确为了行为标准。其扩展了原规范以覆盖一些约定俗成的行为,以及省略掉一些仅在特定情况下存在的或者有问题的部分。 核心的 Promises/A+ 规...
  • 4.5 Error Handling

    4.5 Error Handling 4.5.1 General Principles 4.5 Error Handling 4.5.1 General Principles All methods that return promises are governed by the standard error handling rules ...
  • Observable VS Promise

    Observables vs Promises Observables vs Promises Promises和Observables都为我们提供了抽象,帮助我们处理应用程序的异步性质。 然而,两者之间存在重要的区别: 如前面的例子所示,Observables可以定义异步行为的建立和分解。 Observables是可取消的 此外,可以使用API...