这个问题解决了吗? 我也遇到在iOS上无法播放wav音频的问题,安卓和开发工具里都可以正常播放
苹果手机无法播放音频,点击音频没有反应。?苹果手机列表音频无法播放问题,在网上做了代码设置还是不生效,点击播放音乐按钮触发 const innerAudioContext = wx.createInnerAudioContext() //播放录音 console.log(e.target.dataset.id+"==========播放音频路径====="+JSON.stringify(e)) if (wx.setInnerAudioOption) { wx.setInnerAudioOption({ obeyMuteSwitch: false, autoplay: true }) }else { innerAudioContext.obeyMuteSwitch = false; innerAudioContext.autoplay = true; } innerAudioContext.autoplay = true //是否自动播放 innerAudioContext.src = "https://wish.a2a.xin"+e.target.dataset.id, //音频资源的地址,用于直接播放 innerAudioContext.onPlay(() => { console.log('开始播放') }) //监听各个阶段 innerAudioContext.onCanplay(() => { console.log('可以播放'); }); innerAudioContext.onPlay(() => { console.log('监听到音频开始播放'); }); innerAudioContext.onEnded(() => { console.log('音频自然播放结束事件'); }); innerAudioContext.onStop(() => { console.log('音频停止事件'); }); innerAudioContext.onError((res) => { console.log(res.errMsg); console.log(res.errCode); }); innerAudioContext.onWaiting((res) => { console.log('音频加载中事件,当音频因为数据不足,需要停下来加载时会触发') }); 苹果手机的播放音频三角形还是不会有任何反应
2021-05-14