收藏
回答

小程序生命周期函数中的onUnhandledRejection什么情况下会触发呢?

小程序生命周期函数中的onUnhandledRejection,onPageNotFound在什么情况下会触发呢?

我的为什么触发不了呢?代码片段如下

https://developers.weixin.qq.com/s/1GoainmN7LkJ

最后一次编辑于  2020-09-15
回答关注问题邀请回答
收藏

1 个回答

  • Yᐝ ᯤ⁶ᴳ
    Yᐝ ᯤ⁶ᴳ
    2022-10-17
    return new Promise((resolve, reject) => {
                setTimeout(() => {
                    reject('12313');
                });
    
            }).then(res => {
                console.log(1111,res);
            })
    
    onUnhandledRejection(evt) {
        // 会触发打印
        console.error('----------APP onUnhandledRejection------------', evt);
    },
    
    2022-10-17
    有用
    回复
登录 后发表内容
问题标签