return new Promise((resolve, reject) => { setTimeout(() => { reject('12313'); }); }).then(res => { console.log(1111,res); }) onUnhandledRejection(evt) { // 会触发打印 console.error('----------APP onUnhandledRejection------------', evt); },
onUnhandledRejection在2.16.0以上版本开发者工具不触发?为什么onUnhandledRejection在2.16.0以上版本的开发者工具中不会触发? 真机可以。 操作系统:mac OS 10.15.7
2022-10-17return new Promise((resolve, reject) => { setTimeout(() => { reject('12313'); }); }).then(res => { console.log(1111,res); }) onUnhandledRejection(evt) { // 会触发打印 console.error('----------APP onUnhandledRejection------------', evt); },
2.16.0以上调试基础库无法触发onUnhandledRejection在2.16.0到最新版本的调试基础库都会出现这个问题
2022-10-17return new Promise((resolve, reject) => { setTimeout(() => { reject('12313'); }); }).then(res => { console.log(1111,res); }) onUnhandledRejection(evt) { // 会触发打印 console.error('----------APP onUnhandledRejection------------', evt); },
小程序生命周期函数中的onUnhandledRejection什么情况下会触发呢?小程序生命周期函数中的onUnhandledRejection,onPageNotFound在什么情况下会触发呢? 我的为什么触发不了呢?代码片段如下 https://developers.weixin.qq.com/s/1GoainmN7LkJ [图片]
2022-10-17通过定义全局变量(isPlay)来解决: 执行previewImage事件后,修改全局变量isPlay = true;在当前页面的onShow(),判断全局比那辆isPlay = true时,更改全局音乐播放状态和当前页面播放状态;如果全局播放状态为true时,执行play()事件;
wx.previewImage查看图片会暂停背景音乐每次点开wx.previewImage 预览图片。 背景音乐就会停止播放 wx.createInnerAudioContext
2021-10-26试了八次新建项目只有配置文件,没有模板,麻烦这个问题留意一下
开发者工具新建小程序项目,没有快速模板,只有配置文件https://developers.weixin.qq.com/miniprogram/dev/devtools/download.html 开发者工具新建小程序项目,没有快速模板,只有配置文件。 [图片]
2021-05-23