发布时间:2024-11-15 15:01
function test(){
console.log("111")
setTimeout(()=>{
console.log("222")
},1000)
console.log("333")
}
test()
function timeOut(){
return new Promise((resolve)=>{
setTimeout(()=>{
console.log("222")
resolve()
},1000)
})
}
async function test(){
console.log("111")
await timeOut()
console.log("333")
}
test()
结果:
> 111
> 222
> 333
function timeOut(){
return new Promise((resolve)=>{
setTimeout(()=>{
console.log("222")
resolve()
},1000)
})
}
async function test(){
console.log("111")
await timeOut()
console.log("333")
}
function test2(){
console.log("0000")
test()
console.log("4444")
}
test2()
因为test2中的test里面虽然有await,但是test2中却没有,而test里有异步,所以会先执行同步代码,先000,再111,就直接到444了。
> 0000
> 111
> 4444
> 222
> 333
function timeOut(){
return new Promise((resolve)=>{
setTimeout(()=>{
console.log("222")
resolve()
},1000)
})
}
async function test(){
console.log("111")
await timeOut()
console.log("333")
}
async function test2(){
console.log("0000")
await test()
console.log("4444")
}
test2()
这里主要就是把test2中的异步也是用await来处理了,因为其内部还是用了await,await返回是个resolve的promise对象,所以这里的await也是生效的。
也就是说await只会把该作用域下的异步代码转化为同步,如果外层还是需要同步执行,则还需要一个await