收藏
回答

为什么video API多个视频调用暂停或者停止无效?

啥也先不说,这代码看看有没有问题

 let id = e.target.dataset.id
    let {playList} = this.data
    playList[id].show = true
    this.setData({
      playList
    })
    if(this.playId.status){
      let videoPreItem = wx.createVideoContext(this.playId.playId)
      videoPreItem.pause()
      this.playId.status = false
    }
    let videoItem = wx.createVideoContext(''+id)
    videoItem.play()
    this.playId = {
      status:true,
      playId:id
    }

如图


同时再播放,没有停止,问题在什么地方呢

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

3 个回答

登录 后发表内容
问题标签