小程序视频停止后音频还在继续
-
当前 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() // 停止不了
}
}
}
