【TS】promise代替回调函数使用

参考:
https://blog.csdn.net/a42626423/article/details/135101768
https://blog.csdn.net/a42626423/article/details/135101768

例如,加载资源代码用回调函数的写法:
传参数可以少写,还带容错


    //加载resources下文件
    loadRes(url, type, completeCallback?, failCallback?) {
        if (!url) {
            console.error("url为空!!");
            failCallback && failCallback();
            return;
        }
        let extname = cc.path.extname(url);
        if (extname) {
            url = url.slice(0, - extname.length);
        }
        cc.resources.load(url, type, (err, asset: any) => {
            if (err) {
                console.error("加载失败", url, "\n", err);
                // Editor.log("加载失败", url, err);
                failCallback && failCallback();
                return;
            }
            completeCallback && completeCallback(asset);
        });
    }
    
    //调用
    test(node: cc.Node) {
        this.loadRes("image", cc.SpriteFrame, (res) => {
            node.getComponent(cc.Sprite).spriteFrame = res;
        }, () => {

        })
    }

用promise写法


    //加载resources下文件
    loadResNew(url, type) {
        return new Promise<void>((resolve, reject) => {
            if (!url) {
                console.error("url为空!!");
                reject({});
                return;
            }
            let extname = cc.path.extname(url);
            if (extname) {
                url = url.slice(0, - extname.length);
            }
            cc.resources.load(url, type, (err: Error, asset: any) => {
                if (err) {
                    console.error("加载失败", url, "\n", err);
                    reject(err);
                    return;
                }
                resolve(asset);
            });
        })
    }

   //调用
    test(node: cc.Node) {
        this.loadResNew("image", cc.SpriteFrame).then((res: any) => {
            node.getComponent(cc.Sprite).spriteFrame = res;
        }).catch((error: Error) => {
            //失败处理
        })
    }

其余内容参考:

    fun() {
        return new Promise((resolve, reject) => {
            let succ = Math.random() > 0.5
            setTimeout(() => {
                if (succ) {
                    resolve(null)
                }
                else {
                    reject(null)
                }
            }, 2000)
        });
    }


    test() {
        this.fun().then((data) => {
            //成功处理resolve
        }, (data) => {
            //失败处理reject
        })
        //或者

        this.fun().then((data) => {
            //成功处理
        }).catch((error: Error) => {
            //失败处理
        })
    }
    
    //加载多个
    fun2() {
        let loadArr = []
        return new Promise((resolve, reject) => {
            Promise.all(loadArr).then(() => {
                //loadArr都执行完之后
                resolve(null);
            }).catch((error: Error) => {
                //loadArr出错
                resolve(null);
            })
        });
    }

    //链式调用
    test2() {
        let p = new Promise(resolve => {
            setTimeout(() => {
                resolve("success 1")
            }, 2000)
        })

        p.then((info) => {
            // 此处继续返回一个promise对象,形成链式调用
            return new Promise(resolve => {
                console.log("info = ", info)
                setTimeout(() => {
                    resolve("success 2")
                }, 2000)
            })
        }).then((info) => {
            console.log("info = ", info)
        }).catch((error: Error) => {
            //失败处理
        })
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

烧仙草奶茶

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值