• js中宏任务,微任务,异步,同步,执行的顺序


     [微任务]包括:Promise ,    process.nextTick() *node.js里面的
     [宏任务]包括:整体代码script,  setTimeout    setInterval
     
     
    先输出同步,然后把异步的放到异步队列。然后先执行异步队列的微任务,再执行里面的宏任务
     
    setTimeout(function(){
        console.log('set1')
        new Promise(function(resolve){
            resolve()
        }).then(function(){
            new Promise(function(resolve){
                resolve()
            }).then(function(){
                console.log('then4')
            })
            console.log('then2')
        })
    })
    
    new Promise(function(resolve){
        console.log('pr1');
        resolve()
    }).then(function(){
        console.log('then1')
    })
    
    setTimeout(function(){
        console.log('set2')
    })
    
    console.log(2)
    
     
    运行上述一段代码,先输出同步,然后把异步的放到异步队列。然后先执行异步队列的微任务,在执行里面的宏任务,最后输出:
    宏任务[set1,set2]
    微任务[then1][then2][then4]
    结果: pr1,2,then1,set1,then2 ,then4,set2
     
     
     
     
  • 相关阅读:
    单据存储过程
    C语言II博客作业04
    C语言II博客作业03
    C语言II博客作业02
    C语言II博客作业01
    学期总结
    C语言I博客作业09
    C语言I博客作业08
    C语言I博客作业07
    C语言I博客作业06
  • 原文地址:https://www.cnblogs.com/weiqian/p/12559510.html
Copyright © 2020-2023  润新知