Java教程

事件循环在node新老版本中执行顺序

本文主要是介绍事件循环在node新老版本中执行顺序,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
console.log('1','1');

setTimeout(function() {
  console.log('2','5');
  process.nextTick(function() {
    console.log('3','7');
  });
  new Promise(function(resolve) {
    console.log('4','6');
    resolve();
  }).then(function() {
    console.log('5','8');
  });
}); 

process.nextTick(function() {
  console.log('6','3');
});

new Promise(function(resolve) {
  console.log('7','2');
  resolve();
}).then(function() {
  console.log('8','4');
});

setTimeout(function() {
  console.log('9','9');
  process.nextTick(function() {
    console.log('10','11');
  }) 
  new Promise(function(resolve) {
    console.log('11','10');
    resolve();
  }).then(function() {
    console.log('12','12')
  });
})

这篇关于事件循环在node新老版本中执行顺序的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!