小程序视频停止后音频还在继续
发布于 5 年前 作者 fangyao 12916 次浏览 来自 问答
  • 当前 Bug 的表现(可附上截图)
  • 预期表现
  • 复现路径
  • 提供一个最简复现 Demo

<video bindtimeupdate="bindtimeupdate" ...></video>

bindtimeupdate(e){

if (e.detail.duration - e.detail.currentTime <= 0){

    let vContext = wx.createVideoContext("videoCourse")
if (vContext) {
vContext.stop() // 停止不了
}
}
}
1 回复

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

回到顶部