<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<script>
// promise作为队列最为重用的特性,我们在任何一个地方生成了promise之后,
//都可以把它作为变量传递到其他地方
let promise =new Promise(resolve =>{
setTimeout(()=>{
console.log("promise");
resolve('hello,world')
},1000)
})
setTimeout(()=>{
promise.then(value => {
console.log(value)
})
},2000)
</script>
</body>
</html>
网友评论