您的当前位置:首页正文

小程序-InnerAudioContext.onTimeUpdate失效

2024-11-26 来源:个人技术集锦

问题:

const innerAudioContext = wx.createInnerAudioContext()
...
innerAudioContext.onTimeUpdate(() => {
      console.log('开始播放')
}

调用InnerAudioContext.onTimeUpdate失败,并没有执行这个函数,输出想要的结果

解决方案:
在这个函数之前写以下即可

innerAudioContext.onPlay(function() {})
显示全文