具体方式才考了https://blog.csdn.net/qq_45768871/article/details/111770781给出的方法,但是由于原文中提到的方法在Android微信小程序中存在不停暂停和播放的问题,在这里我将该问题给修复了,希望对需要的同学能有帮助。
<block v-for="(item,index) in videos" :key="index">
<view>
<view class="">
<video :data-id="item.id" :key="item.id" :id="'video'+item.id"
@play="playVideo" :poster="item.cover" @error="videoErrorCallback"
:src="item.video_url" controls></video>
</view>
</view>
</block>
JS代码
playVideo(e){
let _this = this;
//全局变量changePlay表示正在切换。每次切换完播放等一秒在恢复,解决Android下的问题
if(this.changePlay) {
return
}
_this.changePlay = true
let currentId = 'video' + e.currentTarget.dataset.id;// 获取当前视频id
console.log("playVideo currentId ", currentId)
this.videoContent = uni.createVideoContext(currentId,_this).play();
// 获取视频列表
let trailer = this.videos;
trailer.forEach((item, index) =>{ // 获取json对象并遍历, 停止非当前视频
if (item.video_url != null && item.video_url.length > 0) {
let temp = 'video' + item.id;
if (temp != currentId) {
// 暂停其余视频
uni.createVideoContext(temp,_this).pause(); //暂停视频播放事件
}
}
})
setTimeout(()=>{
_this.changePlay = false
},1000)
},
有问题望大家回复