js中特殊的宏任务
Posted 开心的小程序员
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js中特殊的宏任务相关的知识,希望对你有一定的参考价值。
一.setImmediate
目前只有IE10+和NodeJS支持该API。
立即触发回调函数,使其进入宏任务队列(macro task queue)
语法:
// 只有一个参数 setImmediate(callback)
比setTimout(fn, 0)的执行顺序要快,性能也更高。
因为setTimeout(fn,0)实质上会有4ms的延迟。
二. MessageChannelAPI
1. 作用
MessageChannelAPI允许我们新建一个消息通道,并通过它的两个属性port1和port2进行通信。
实质是通过一个端口发送数据,另一个端口通过onmessage监听另一个端口发送的数据。
触发方式:
同步触发,即port发送数据时立即触发。所以会比setTimeout(fn,0)触发要早。
2. 使用
MessageChannel是个构造函数。使用前需要创建实例,生成一条消息通道。
const channel = new MessageChannel();
实例自带两个端口,即消息通道的两端
const port1 = channel.port1;
const port2 = channel.port2;
示例:(模拟setimmediate)
const channel = new MessageChannel(); const port1 = channel.port1; const port2 = channel.port2; port1.onmessage = function(e) { console.log(e.data); } setTimeout(function() { console.log(‘settimeout‘); //4ms }) port2.postMessage(‘hello world‘); //立即 Promise.resolve().then(() => { console.log(‘then‘); // 微任务 }) // 运行结果 then hello world settimeout
以上是关于js中特殊的宏任务的主要内容,如果未能解决你的问题,请参考以下文章