wx.createInnerAudioContext 在ios 手机播放 wav无法播放?
安卓手机 和 模拟器都可以,ios 手机不行 报{errMsg: "INNERERRCODE:-11850, ERRMSG:操作已停止", errCode: 10002} const innerAudioContext = uni.createInnerAudioContext({ useWebAudioImplement: false }); innerAudioContext.src = `${baseUrl}/api/console/voice/wav/${fileId}.wav`; innerAudioContext.play(); innerAudioContext.onPlay(() => { console.log('开始播放') }) innerAudioContext.onError((res) => { console.log("onError==>", res);//onError==> {errMsg: "INNERERRCODE:-11850, ERRMSG:操作已停止", errCode: 10002} })