在电脑上测试时,日志只看到“播放音频”,没有其它音频播放的相关日志出现,拿耳机听,也没听到声音;
安卓手机验证时,会报10001错误(errCode:10001, errMsg:“errCode:602,err:error,not found param”)
样例中用的是本地音频文件,如果是在线音乐是可以播放的。
测试用的机型:一加3T 7.1.1版本系统
部分代码:
playAudio: function () {
console.log(‘播放音频’)
var innerAudioContext = wx.createInnerAudioContext()
// innerAudioContext.autoplay = true
innerAudioContext.src = ‘./audio/v_10.mp3’
innerAudioContext.onPlay(() => {
console.log(‘开始播放’)
})
innerAudioContext.onError((res) => {
console.error(res)
})
innerAudioContext.play();
}