wx.onUnhandledRejection((reason)=>{
console.log('promise报错121212',reason)
})
testPormise() {
return new Promise((resolve,reject)=>{
console.log(bb);
const aa = 'name';
if (aa === 'name1') {
resolve();
} else {
reject({message: '1212'});
}
});
},
this.testPormise().then(()=>{});
https://developers.weixin.qq.com/miniprogram/dev/api/base/app/app-event/wx.onUnhandledRejection.html
这样尝试并没有打印出来reason
截止到2024.1月22日,现在也还是有问题
同样有这个问题,自己 reject/throw 的异常无法全局抓取
回个相关问题:https://developers.weixin.qq.com/community/develop/doc/000008f9f785304d4dedb7d255b000
没用过这个
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)