收藏
回答

在iOS11机型,系统14.0.1下播放语音无声音?微信版本7.0.17,基础库2.11.3

HTML代码:
<view class="bubble voice" bindtap="playVoice('https://learn-english-number.ifcode.com/gameover.mp3')">
  <view class="icon other-voice"></view>
</view>

JS代码:

playVoicefunction(url,index{
    const context = wx.createInnerAudioContext()
    context.autoplay = true
    context.src = url
    context.onPlay(() => {
      console.log('play', url)
    })
    context.onError((res) => {
      console.error('play.error',res)
    })
    context.onEnded(() => {
      console.log('end')
    })
  }
回答关注问题邀请回答
收藏

1 个回答

登录 后发表内容
问题标签