使用video swiper 组件,华为P20进入其他页面仍有视频播放的声音?
使用video swiper 组件,华为P20进入其他页面仍有视频播放的声音。其他手机也会偶发bug。
我在video swiper中加入了页面生命周期,监听页面跳转后停止视频播放。事件触发了,但是视频仍然没有停止播放。这是怎么回事?
pageLifetimes: {
hide() {
this.data._videoContexts.forEach(function (ctx, index) {
ctx.pause();
});
},
show() {
this.playCurrent(this.data._last);
},
},
