关于node.js的异步怎么去解释?
`
console.log('1');
setTimeout(function() {
console.log('2');
process.nextTick(function() {
console.log('3');
})
new Promise(function(resolve) {
console.log('4');
resolve();
}).then(function() {
console.log('5')
})
})
process.nextTick(function() {
console.log('6');
})
new Promise(function(resolve) {
console.log('7');
resolve();
}).then(function() {
console.log('8')
})
setTimeout(function() {~~~~
console.log('9');
process.nextTick(function() {
console.log('10');
})
new Promise(function(resolve) {
console.log('11');
resolve();
}).then(function() {
console.log('12')
})
})
`
这个的运行结果是什么?
这是我的:1 6 2 3 4 5 7 8 10 9 11 12,
但是在node环境下是 :1 7 6 8 2 4 9 11 3 10 5 12,
不是很懂。请各位指点一二
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的node环境是1 7 6 8 2 4 9 11 3 10 5 12,这和我理解的也是一致的,请问你的第一个运行结果是在什么环境下的?