问题:
const innerAudioContext = wx.createInnerAudioContext() ... innerAudioContext.onTimeUpdate(() => { console.log('开始播放') }
调用InnerAudioContext.onTimeUpdate失败,并没有执行这个函数,输出想要的结果
解决方案: 在这个函数之前写以下即可
innerAudioContext.onPlay(function() {})