JS中Promise用法(简要说明)

2024-08-24 04:04
文章标签 js 用法 说明 promise 简要

本文主要是介绍JS中Promise用法(简要说明),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

文章目录

  • 1、下方自定义名词约定
  • 2、官方流程图
  • 3、构造函数Promise + <状态>fulfilled 用法
    • 代码
    • 图示
  • 4、构造函数Promise + <状态>rejected 用法
    • 代码
    • 图示
  • 5、第3和4结合使用,可以将promise状态settled为2种情况之一
    • 代码
    • 图示(图中if和else都是调用positive不太对,以代码为准)
  • 6、then的用法
    • 代码
    • 图示
    • 7、catch的用法
    • 概括
    • 代码
  • 8、all的用法
    • 概括
    • 代码
  • 9、race() //竞态
    • 概括
    • 代码

1、下方自定义名词约定

  • IIFE:立即执行函数
  • positive: 正向结果接收函数(resolve),异步回调后用这个函数接收数据并改变promise状态
  • data: 正向数据
  • negative: 负向结果接收函数(reject),异步回调后用这个函数接收原因并改变promise状态
  • reason: 负向原因

2、官方流程图

在这里插入图片描述

3、构造函数Promise + <状态>fulfilled 用法

代码

//抽象伪代码例子
new Promise( IIFE(positive, negative){ positive(data) } )
//具体例子
let testP = new Promise(function(positive, negative){setTimeout(()=>{positive("success.");console.log(`延迟执行完毕,用positive设置正向结果,并改变promise的状态`);}, 5000);
});

图示

在这里插入图片描述

4、构造函数Promise + <状态>rejected 用法

代码

//抽象伪代码例子
new Promise( IIFE(positive, negative){ negative(reason) } )
//具体例子
let testFail = new Promise(function(positive, negative){setTimeout(()=>{negative("failure.");console.log(`延迟执行完毕,异步回调后用negative这个函数接收原因并改变promise状态`);}, 5000);
});

图示

在这里插入图片描述

5、第3和4结合使用,可以将promise状态settled为2种情况之一

代码

// 下方的 xxx 每次执行都要用一个新变量接收新的结果
let xxx = new Promise(function(positive, negative){setTimeout(()=>{let rst = Math.floor(Math.random()*100);if(rst%2==0){positive(`偶数=>${rst}`);}else{negative(`奇数=>${rst}`); //注意,下方图示调用错误,总是fulfilled态;以运行这个最新代码为准}}, 5000);
});

图示(图中if和else都是调用positive不太对,以代码为准)

在这里插入图片描述
在这里插入图片描述

6、then的用法

代码

new Promise(function(positive, negative){// setTimeout(()=>{let rst = Math.floor(Math.random()*100);if(rst%2==0){positive(`偶数=>${rst}`);}else{negative(`奇数=>${rst}`);}// }, 0);
})
.then(
(data)=>{console.log(`then的第一个参数函数,接收正向结果=>${data}`);
},
(reason)=>{console.log(`then的第二个参数函数,接收负向原因=>${reason}`);
});

图示

触发对应的处理函数

在这里插入图片描述

7、catch的用法

概括

  1. catch等价于then的第2个处理函数,当then没有第2个处理函数时
  2. catch还等价于try catch,当then第1个处理函数运行出错时

代码

//catch是和promise对象的then函数并行的函数
//catch顾名思义,类似try{}catch(e){},用来捕获异常的(promise的catch能捕获2种情况《1、没有then的第2个函数参数时|||2、then的第1个函数参数运行出错时)》如下)//1、当then函数没有第二个参数(用来处理negative原因的函数),catch能够捕获到并处理【等价于then的第2个函数参数,在then没有第2个参数时】
new Promise((positive, negative)=>{negative("负向原因。")
})
.then((data)=>{ console.log("上面是negative,不会进到这里" + data) }// (reason)=>{ console.log("上面是negative,会进来" + reason + "但是我注释掉了,所以这里没处理到。") }
)
.catch( //控制台输出:   捕获negative原因,并输出:undefined ___ 负向原因。(reason, data)=>{ console.log(`捕获negative原因,并输出:${data} ___ ${reason}`) }
);//1-1、这里拓展下,如果then有第二个参数,即接收negative原因并处理的函数,正常catch是执行不了的【then有第2个参数,catch无效】
new Promise((positive, negative)=>{negative("负向原因。")
})
.then((data)=>{ console.log("上面是negative,不会进到这里" + data) },(reason)=>{ console.log("上面是negative,会进来" + reason + "但是我注释掉了,所以这里没处理到。") }
)
.catch((reason, data)=>{ console.log(`捕获negative原因,并输出:${data} ___ ${reason}`) }
);2、then的第一个函数参数运行出错,能catch到报错使js程序不至于暂停(这就是相当于try catch的能力了)
new Promise((positive, negative)=>{positive("正向数据,进入then的第1个处理函数——————")// negative("负向原因。")
})
.then((data)=>{ console.log(data); //控制台输出:正向数据,进入then的第1个处理函数——————console.log(`特意使用不存在的变量${notExistVariable_willError}`); },(reason)=>{ console.log(reason); }
)
.catch(//控制台输出:then的第1个函数使用了不存在的变量,报错:ReferenceError: notExistVariable_willError is not defined ___ undefined(reason, data)=>{ console.log(`then的第1个函数使用了不存在的变量,报错:${reason} ___ 接收到的数据:${data}`) }
);

8、all的用法

概括

  • all函数的数组参数中的所有的promise都成功执行完毕时触发then的第一个函数参数,只要任意没有成功都触发then的第2个函数参数。

代码

Promise.all([new Promise((positive, negative)=>{positive("成功1"); }),new Promise((positive, negative)=>{positive("成功2"); }),new Promise((positive, negative)=>{positive("成功3"); }),
])
.then((results)=>{ console.log(`成功结果集:${results.join(",")}`) },(reason)=>{ console.log(`毕成功,所以不可能有reason=> ${reason}`); }
);
//控制台输出: 成功结果集:成功1,成功2,成功3

9、race() //竞态

概括

  • race数组参数中的promise都是竞争关系,任意完成(不管是调用positive还是negative),都会执行then,并且后续race数组参数中的剩余promise如果完成了也不再触发then了。

代码

//以下代码总是输出: 成功偶数111=>xx  或者 失败奇数111=>xx , 即:
//					只会在执行race数组参数中的第一个promise后,触发与race同级的then一次。
Promise.race([new Promise((positive, negative)=>{let numIn_100 = Math.floor(Math.random()*100);if(numIn_100%2==0){positive(`成功偶数111=>${numIn_100}`);}else{negative(`失败奇数111=>${numIn_100}`);}}),new Promise((positive, negative)=>{positive("失败2222"); }),new Promise((positive, negative)=>{negative("成功3333"); }),
])
.then((data)=>{ console.log(`positive data:${data}`) },(reason)=>{ console.log(`negative reason=> ${reason}`); }
);

这篇关于JS中Promise用法(简要说明)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1101392

相关文章

oracle中exists和not exists用法举例详解

《oracle中exists和notexists用法举例详解》:本文主要介绍oracle中exists和notexists用法的相关资料,EXISTS用于检测子查询是否返回任何行,而NOTE... 目录基本概念:举例语法pub_name总结 exists (sql 返回结果集为真)not exists (s

Node.js 中 http 模块的深度剖析与实战应用小结

《Node.js中http模块的深度剖析与实战应用小结》本文详细介绍了Node.js中的http模块,从创建HTTP服务器、处理请求与响应,到获取请求参数,每个环节都通过代码示例进行解析,旨在帮... 目录Node.js 中 http 模块的深度剖析与实战应用一、引言二、创建 HTTP 服务器:基石搭建(一

Redis分布式锁使用及说明

《Redis分布式锁使用及说明》本文总结了Redis和Zookeeper在高可用性和高一致性场景下的应用,并详细介绍了Redis的分布式锁实现方式,包括使用Lua脚本和续期机制,最后,提到了RedLo... 目录Redis分布式锁加锁方式怎么会解错锁?举个小案例吧解锁方式续期总结Redis分布式锁如果追求

结构体和联合体的区别及说明

《结构体和联合体的区别及说明》文章主要介绍了C语言中的结构体和联合体,结构体是一种自定义的复合数据类型,可以包含多个成员,每个成员可以是不同的数据类型,联合体是一种特殊的数据结构,可以在内存中共享同一... 目录结构体和联合体的区别1. 结构体(Struct)2. 联合体(Union)3. 联合体与结构体的

Springboot中Jackson用法详解

《Springboot中Jackson用法详解》Springboot自带默认json解析Jackson,可以在不引入其他json解析包情况下,解析json字段,下面我们就来聊聊Springboot中J... 目录前言Jackson用法将对象解析为json字符串将json解析为对象将json文件转换为json

使用Vue.js报错:ReferenceError: “Vue is not defined“ 的原因与解决方案

《使用Vue.js报错:ReferenceError:“Vueisnotdefined“的原因与解决方案》在前端开发中,ReferenceError:Vueisnotdefined是一个常见... 目录一、错误描述二、错误成因分析三、解决方案1. 检查 vue.js 的引入方式2. 验证 npm 安装3.

关于SpringBoot的spring.factories文件详细说明

《关于SpringBoot的spring.factories文件详细说明》spring.factories文件是SpringBoot自动配置机制的核心部分之一,它位于每个SpringBoot自动配置模... 目录前言一、基本结构二、常见的键EnableAutoConfigurationAutoConfigu

JS常用组件收集

收集了一些平时遇到的前端比较优秀的组件,方便以后开发的时候查找!!! 函数工具: Lodash 页面固定: stickUp、jQuery.Pin 轮播: unslider、swiper 开关: switch 复选框: icheck 气泡: grumble 隐藏元素: Headroom

Zookeeper安装和配置说明

一、Zookeeper的搭建方式 Zookeeper安装方式有三种,单机模式和集群模式以及伪集群模式。 ■ 单机模式:Zookeeper只运行在一台服务器上,适合测试环境; ■ 伪集群模式:就是在一台物理机上运行多个Zookeeper 实例; ■ 集群模式:Zookeeper运行于一个集群上,适合生产环境,这个计算机集群被称为一个“集合体”(ensemble) Zookeeper通过复制来实现

在JS中的设计模式的单例模式、策略模式、代理模式、原型模式浅讲

1. 单例模式(Singleton Pattern) 确保一个类只有一个实例,并提供一个全局访问点。 示例代码: class Singleton {constructor() {if (Singleton.instance) {return Singleton.instance;}Singleton.instance = this;this.data = [];}addData(value)