当前位置:网站首页>Promise 解决阻塞式同步,将异步变为同步
Promise 解决阻塞式同步,将异步变为同步
2022-08-04 01:24:00 【勇敢*牛牛】
Promise 解决阻塞式同步,将异步变为同步
一、样式
var p = new Promise(function(reslove,reject){
reslove()//在构造的时候就执行这个函数了
});
p.then(function(){
}).catch(function(){
})
————————————————————————————————————————————————————————————————————————————————————
new Promise(function(resolve,reject){
resolve();
}).then(function(){
// resolve时执行
},function(){
// reject时执行
})
Promise
需要实例化完成创建一个Promise
对象- 在
Promise
实例化的构造函数中传入一个回调函数 - 回调函数中有两个参数,一个是
resolve
,一个是reject
- 当成功后调用
resolve
函数,失败后调用reject
函数 - 并且可以通过
resolve
或者reject
函数传递一个参数 - 给
Promise
实例化的对象执行两个方法一个是then
,一个 是catch
- 这两个方法中有两个回调函数,当执行
resolve
时,调用then
中回调函数,当执行reject
时调用catch
中的回调函数 - 在Promise实例化的构造中只能调用一次resolve或者一次 reject,调用一次后,再次调用任何一个resolve或者reject都是无效的
顺序输出异步abc
new Promise(function(resolve,reject){
setTimeout(function(){
resolve()
},1000)
}).then(function(){
console.log('a');
return new Promise(function(resolve,reject){
setTimeout(function(){
resolve()
},500)
})
}).then(function(){
console.log('b');
return new Promise(function(resolve,reject){
setTimeout(function(){
resolve()
},1000)
})
}).then(function(){
console.log('c');
})
输出:
a
b
c
顺序输出异步红绿灯
function setTime(time){
return new Promise(function(resolve,reject){
setTimeout(function(){
resolve()
},time)
})
}
setTime(100).then(function(){
console.log('黄灯');
return setTime(1000)
}).then(function(){
console.log('绿灯');
return setTime(500)
}).then(function(){
console.log('红灯');
})
封装返回一个Promise对象
//次函数返回一个Promise对象
function setTime(time){
return new Promise(function(resolve,reject){
setTimeout(function(){
resolve();
},time);
})
}
Promise对象执行方法then
setTime().then(function(){
console.log('aaa');
})
//aaa
连缀使用Promise
function setTime(time){
return new Promise(function(resolve,reject){
setTimeout(function(){
resolve();
},time);
})
}
setTime(500).then(function(){
console.log('aaa');
return setTime(1000);
}).then(function(){
console.log('bbb');
return setTime(100);
}).then(function(){
console.log('ccc');
})
aaa
bbb
ccc
预加载图片
让异步变成一个阻塞式同步
function loadImage(src){
return new Promise(function(resolve,reject){
var img = new Image();
img.src = src;
/* 加载完成时执行一下代码 */
img.onload = function(){
/* 执行resolve回调函数,传入参数img对象 */
resolve(img)
}
})
}
var arr = [];
/* Promise对象构造的时候执行了回调函数resolve,而执行resolve会调用方法then中的回调函数 */
loadImage("./img/img_15.JPG").then(img =>{
arr.push(img)
return loadImage("./img/img_16.JPG")
}).then(img =>{
arr.push(img)
return loadImage("./img/img_17.JPG")
}).then(img =>{
arr.push(img)
console.log(arr);
})
function loadImage(src){
return new Promise(function(resolve,reject){
var img = new Image();
img.src = src;
img.onload = function(){
resolve(img)
}
img.onerror = function(){
reject(src)
}
})
}
//错误时执行代码
var arr = [];
loadImage("./img/img_11.JPG").then(img =>{
arr.push(img)
}).catch(function(src){
console.error("error:"+src);
})
连续then时,相当于自动创建一个return promise并且执行resolve
new Promise(function(resolve,reject){
setTimeout(function(){
resolve();
},500);
}).then(function(){
console.log("aa");
// 连续then,并没有return新的Promise时,相当于自动return Promise执行了resolve
// return new Promise(function(resolve,reject){
// resolve();
// })
}).then(function(){
console.log("bb");
})
两种快捷写法
Promise.resolve().then(function(){
})
Promise.reject().catch(function(){
})
图片整体预加载
- 先把所有异步使用Promise封装后放在一个数组中
- 然后通过Promise.all传入这个数组,这时候
- 所有异步执行resolve传入的参数就会被按照
- 顺序放在一个数组中,并且通过then中参数返回
function loadImage(src){
return new Promise(function(resolve,reject){
var img = new Image();
img.src = src;
img.onload = function(){
resolve(img)
}
img.onerror = function(){
reject(src)
}
})
}
arr = [];
for(var i=15;i<19;i++){
var p = loadImage(`./img/img_${
i}.JPG`);
arr.push(p);
}
console.log(arr);
Promise.all(arr).then(function(list){
list.forEach(item=>console.log(item));
})
谁先加载完就显示谁
Promise.race(arr).then(function(img){
console.log(img);
})
最简点的异步加载async,awiat
function loadImage(src){
return new Promise(function(resolve,reject){
var img = new Image();
img.src = src;
img.onload = function(){
resolve(img)
}
img.onerror = function(){
reject(src)
}
})
}
init();
async function init(){
arr = [];
for(var i=15;i<19;i++){
/*自动等待将loadImage函数执行的resolve函数的结果值返回给p*/
var p = await loadImage(`./img/img_${
i}.JPG`);
arr.push(p);
}
console.log(arr);
}
边栏推荐
- 在Activity中获取另一个XML文件的控件
- FeatureNotFound( bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested:
- Mvc, Mvp and Mvvm
- typescript56-泛型接口
- LeetCode第三题(Longest Substring Without Repeating Characters)三部曲之三:两次优化
- 2022年上半年各大厂Android面试题整理及答案解析(持续更新中......)
- XSS - Bypass for loop filtering
- typescript52 - simplify generic function calls
- 【正则表达式】笔记
- typescript54-泛型约束
猜你喜欢
【虚拟户生态平台】虚拟化平台安装时遇到的坑
Installation and configuration of nodejs+npm
《Greenplum构建实时数据仓库实践》简介
虚拟机CentOS7中无图形界面安装Oracle
[store mall project 01] environment preparation and testing
js函数防抖和函数节流及其使用场景
600MHz频段来了,它会是新的黄金频段吗?
114. How to find the cause of Fiori Launchpad routing error by single-step debugging
The 600MHz band is here, will it be the new golden band?
nodejs安装及环境配置
随机推荐
中原银行实时风控体系建设实践
- heavy OpenCV 】 【 mapping
企业虚拟偶像产生了实质性的价值效益
动态内存二
typescript54-泛型约束
如何通过单步调试的方式找到引起 Fiori Launchpad 路由错误的原因试读版
研究生新生培训第四周:MobileNetV1, V2, V3
C 学生管理系统 显示链表信息、删除链表
redis中常见的问题(缓存穿透,缓存雪崩,缓存击穿,redis淘汰策略)
电子组装行业对MES管理系统的需求分析
Android interview questions and answer analysis of major factories in the first half of 2022 (continuously updated...)
ASP.NET 获取数据库的数据并写入到excel表格中
FeatureNotFound( bs4.FeatureNotFound: Couldn‘t find a tree builder with the features you requested:
nodejs安装及环境配置
The 600MHz band is here, will it be the new golden band?
Web3 security risks daunting?How should we respond?
有没有jdbc 链接优炫数据库文档及示例?
【正则表达式】笔记
nodejs+npm的安装与配置
GeoAO:一种快速的环境光遮蔽方案