播放时退出到后台,或切换app后,音频自动停止播放(这点是没问题),在切回来时,音频不会继续播放,导致onEnded监听也触发不了。
同样的代码在ios端的微信小程序没问题,请教下大神们是什么问题
onLoad() {
this.story = uni.createInnerAudioContext();
this.story.autoplay = true;
this.story.src = '.mp3';
this.story.onEnded(() => {
});
},
onUnload() {
this.story.stop()
this.story = ''
},
1 个回复
Diligent_UI - 【插件开发】【专治疑难杂症】【多款插件已上架:https://ext.dcloud.net.cn/publisher?id=193663(微信搜索飘逸科技UI小程序直接体验)】【骗子请绕道】问题咨询请加QQ群:120594820,代表作灵感实用工具小程序
onEnded不是切出去的时候触发吗