问题模块 框架类型 问题类型 API/组件名称 终端类型 微信版本 基础库版本
API和组件 微信小程序 Bug BackgroundAudio 客户端 6.7.3 2.4.0
wx.onBackgroundAudioStop(() => {
console.log("---stop1");
});
const backgroundAudioManager = wx.getBackgroundAudioManager();
backgroundAudioManager.onStop(() => {
console.log("---stop");
});
backgroundAudioManager.onEnded(() => {
console.log("---end");
});
//无法通过 wx.getBackgroundAudioManager()监听stop事件,不回调。
//但通过wx.onBackgroundAudioStop()从 >= 1.2.0 开始,本接口不再维护,回调成功。
//开发者工具都可以成功,真机调试出现上面问题。
微信小程序开发问题解答
微信小程序开发者回答:
提供一下能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
本文网址:http://www.91bianli.com/weixinxiaochengxu/35401.html