InnerAudioContext退出停止播放问题

时间:2025-04-02 16:25:10

在所需页面js的page上方定义全局变量

let innerAudioContext = null;

这里用 let 或 var ,const定义的常量为只读形式报错,onload就不允许修改会报错,如果重定义就成了局部常量,后续调用还是最外层的null

onload进入重新实例化InnerAudioContext音频,防止回调多次触发(重音问题),在onload中调用一次监听即可

onLoad:function(options){
    innerAudioContext = wx.createInnerAudioContext();
    
    //以下监听事件只需要注册一次就行
    innerAudioContext.onPlay(()=>{//监听播放事件
    })
    innerAudioContext.onStop(()=>{//监听停止事件
    })
    innerAudioContext.onPause(()=>{//监听暂停事件
    })
}

方法调用播放

loadRadio: function () {
    innerAudioContext.src = src //音频路径
    innerAudioContext.autoplay = true //自动播放
  },

退出页面销毁实例

onUnload:function(e){
    innerAudioContext.destroy();//销毁这个实例
  }

参考/qq_41226029/article/details/95346514