文件名称:promises-in-depth
文件大小:2KB
文件格式:ZIP
更新时间:2024-05-20 22:32:29
JavaScript
深入承诺 注意事项: : 概述 承诺是一种模式,可帮助一种特定类型的异步编程 使用Promise进行异步编程 3个状态: pending ,已fulfilled ,已rejected 一个诺言返回一个诺言-链接then() 返回值通过链传递 p . then ( ( ) => result ) // ----> the returned value in then . then ( result => console . log ( result ) ) // it's the input values of the following then 顺序执行 到then 并行执行 将诺言推送到数组 Promise.all 后备vs承诺 p1 . then ( result => { // then notifies callbacks with result console .
【文件预览】:
promises-in-depth-master
----README.md(1KB)
----await-async.md(1B)
----overview.js(1KB)