收藏
回答

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连音频文件都没有触发下载,也没有声音播放,其他手机都是可以的,目前仅发现这一例

回答关注问题邀请回答
收藏

2 个回答

登录 后发表内容