解决了吗? 我也遇到同样问题了
苹果手机innerAudioContext播放音频返回-11850错误- 当前 Bug 的表现(可附上截图) 用innerAudioContext播放音频,在开发平台及android手机上可以正常播放。但是在苹果手机上去播放不了。显示 INNERERRCODE: -11850, ERRMSG: 操作停止。 有时也发生-11800错误。 [图片] - 预期表现 正常播放 - 复现路径 如下代码 - 提供一个最简复现 Demo ....wxml: <button class="weui-btn " type="primary" bindtap="playAudio">播放音频</button> ....jsm const innerAudioContext = wx.createInnerAudioContext(); Page({ data: { }, playAudio: function () { // innerAudioContext.autoplay = true ; innerAudioContext.src = 'https://ss.youbtc.net/media/audio/cv1539727702553.m4a'; innerAudioContext.play(); }, onLoad: function (options) { innerAudioContext.onPlay(() => { console.log('开始播放') }); innerAudioContext.onEnded(() => { console.log('播放结束'); }); innerAudioContext.onStop(() => { console.log('停止播放'); }); innerAudioContext.onError((res) => { console.log(res.errMsg); console.log(res.errCode); }) },
2023-07-04你好,修复了吗? 我也遇到这个问题了
innerAudioContext为什么播放不了远程m4a?innerAudioContext.src = 'https://www.php66.cn/static/ji.m4a' 就这一行和文档的不一样,换成我自己的服务器文件, 只有开发者工具可以,iPhone7 真机调试 提示INNERERRCODE:-11850, ERRMSG:操作停止 10002 网络错误 为什么
2023-07-04