ES6 JS Promise函数

在这里插入图片描述

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Promise函数</title>
</head>

<body>
    <script>
        // 示例一
        new Promise(function (resolve, reject) {
            console.log(11);
            // 必须有个resolve或reject不然处于pending状态不往下执行
            if (true) {
                resolve(22);
            } else {
                // 直接跳转到catch
                reject("error"); 
            }
        }).then(function (value) {
            console.log(value);
            return 33;
        }).then(function (value2) {
            console.log(value2);
        }).catch(function (err) {
            console.log(err);
        }).finally(function () {
            console.log("finally");
        })

        // 示例二
        // 构造promise函数
        function print(delay, message) {
            return new Promise(function (resolve, reject) {
                setTimeout(function () {
                    document.write(message);
                    resolve();
                }, delay);
            });
        }

        // 构造异步函数
        async function asyncFunc() {
            // 一个promise函数运行结束再继续运行下一个。(我理解为异步中的函数同步执行)
            await print(5000, "1");
            // 上一个运行完后10s才打印输出2
            await print(10000, "2");
            await print(15000, "3");
        }
        // 输出:112233
        asyncFunc();
        asyncFunc();
    </script>
</body>

</html>

参考:https://www.runoob.com/js/js-promise.html
【如有不对,请指正】

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值