获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
onError 没有错误 所有的声音都打开了,没有静音
createInnerAudioContext 为什么部分ios 无法播放?const innerAudioContext = wx.createInnerAudioContext() innerAudioContext.autoplay = true innerAudioContext.src = 'https://storage.360buyimg.com/jdrd-blog/27.mp3' innerAudioContext.onPlay(() => { console.log('开始播放') }) innerAudioContext.onError((res) => { console.log(res.errMsg) console.log(res.errCode) }) innerAudioContext.play() 手机型号:iPhone 12 系统版本:ios 16.5.1 微信版本:8.0.39 基础库:3.0.0 期望:期望用户进入页面进行音频播放,给用户一个提示 目前问题,上述系统版本,进入后无法正常进行播放,真机调试看network连音频文件都没有触发下载,也没有声音播放,其他手机都是可以的,目前仅发现这一例
2023-07-22