awit的用法,等待执行结果
程序员文章站
2022-05-31 21:02:10
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>awit函数</title>
</head>
<body>
<script>
function shui () {
return new promise((reslove, reject) => {
settimeout(() => {
console.log('shui')
reslove('shui')
}, 5000)
})
}
function hai () {
return new promise((reslove, reject) => {
settimeout(() => {
console.log('hai')
reslove('hai')
}, 10000)
})
}
async function waitme() {
let a = await shui() // 1. 等待执行shui 5秒后 console.log('shui')
let b = await hai() // 2. 等待执行完 hai 然后10s执行 console.log('hai')
console.log(a + b) // shuihai
}
waitme()
</script>
</body>
</html>
上一篇: 在正史中,方腊实际上是被这位抗金名将生擒的,和武松丝毫没有一点关系?
下一篇: 要生孩子了
推荐阅读
-
PHP设置一边执行一边输出结果的代码
-
C#执行存储过程并将结果填充到GridView的方法
-
谈谈 Callable 任务是怎么运行的?它的执行结果又是怎么获取的?
-
jquery中的ajax如何返回结果而非回调方式即为同顺序执行
-
selenium在执行phantomjs的API并获取执行结果的方法
-
oracle导出sql语句的结果集和保存执行的sql语句(深入分析)
-
javascript在严格模式下的执行结果分享
-
PHP ajax 异步执行不等待执行结果的处理方法
-
windows任务计划执行结果0x0 0x1的意思与win2008系统计划任务用法介绍
-
js中函数表达式和自执行函数表达式的用法总结