Promise7

作者: 加冰宝贝 | 来源:发表于2018-12-05 15:32 被阅读0次
<!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>

相关文章

网友评论

      本文标题:Promise7

      本文链接:https://www.haomeiwen.com/subject/wbgcyftx.html