收藏
回答

音频播放 暂停问题?

1.在当前页面播放音频时,如果息屏或者回到桌面 要继续播放音频。

2.切换页面,关闭小程序。要停止播放视频

使用 const audioContext = wx.createInnerAudioContext();

后在 hide事件中我进行了暂停播放事件

  methods: {
    audioPause:function () {
      audioContext.pause();
      this.setData({
        playingfalse,
        loadingfalse
      })
    },
    }
    pageLifetimes: {
    hidefunction () {
      this.audioPause()
    },
  },
  detached() {
    this.audioPause()
  }


早app.json中 加入了

 "requiredBackgroundModes": ["audio"]

这样写只能满足需求2,不能满足需求1

问一下如何才能满足需求1,2

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

1 个回答

  • 困难
    困难
    2021-10-26

    2021-10-26
    有用
    回复 1
    • 像我这么吊的还有六个
      像我这么吊的还有六个
      2021-10-26
      这句话写了的。但是在页面onhide时间中我把音频关闭了。不然切换页面他还在那里播放
      2021-10-26
      回复
登录 后发表内容