收藏
回答

扫描后调用声音,苹果没有声音?安卓有声音。

  scanBtn() { 
    wx.scanCode({
      success(res) => {
      this.voice()
      },
      fail(res) => {
      }
    })  //wx.scanCode
  },

  
  voicefunction () {
    let _this=this
    const innerAudioContext = wx.createInnerAudioContext()
    innerAudioContext.autoplay = true
    innerAudioContext.obeyMuteSwitch = false
    innerAudioContext.src = "https://xcx.yearconsports.com/s.mp3"
    innerAudioContext.play()
    innerAudioContext.onPlay(() => {
      console.log('开始播放')
    })
    // innerAudioContext.play();
    innerAudioContext.onError((e) => {
      console.log(e.errMsg)
      console.log(e.errCode)
      _this.voice()
    })
  },


上面这段代码苹果手机在【真机调试】下有声音,在【预览或发布体验版或上线】的时候没声音。为什么?


代码片段:https://developers.weixin.qq.com/s/qlXLXKmK75it

最后一次编辑于  2020-07-11
回答关注问题邀请回答
收藏

3 个回答

  • 浮沉
    浮沉
    2021-01-27

    您好请问有解决方法吗?

    2021-01-27
    有用
    回复
  • 弓长
    弓长
    2020-08-31

    折腾太久了,同样的问题..... 最终我是放在ONSHOW中来解决的....

    2020-08-31
    有用
    回复
  • 灵芝
    灵芝
    2020-07-11

    麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html

    2020-07-11
    有用
    回复 5
    • Implements
      Implements
      2020-07-11
      代码片段:https://developers.weixin.qq.com/s/qlXLXKmK75it
      2020-07-11
      回复
    • Implements
      Implements
      2020-07-11
      苹果6S 版本13.5.1 ,微信版本7.0.13,基础库最低版本设置2.4.3
      2020-07-11
      回复
    • Implements
      Implements
      2020-07-14
      怎么样,有解决方法吗?
      2020-07-14
      回复
    • 灵芝
      灵芝
      2020-07-14回复Implements
      问题跟进中,有进展帖子内回复
      2020-07-14
      回复
    • Implements
      Implements
      2020-10-19
      问题还没有进展吗
      2020-10-19
      1
      回复
登录 后发表内容
问题标签