vue3-video-play播放视频,可能是因为视频太大原因,播放一般就不播放了,需要重新播放
视频的地址是
不知道是什么原因,求解!
【相关推荐】
mounted() {
// 监听页面离开时触发
let that = this
window.addEventListener('unload', function () {
// 调用后台接口对事件存储
that.setTimes(that.playTime)
})
},
methods: {
// 当前播放位置发生变化时触发
onPlayerTimeupdate(player){
// 获取播放时间
let currentTime = player.cache_.currentTime
// 百分比
let num = parseInt(player.cache_.currentTime/player.cache_.duration * 1000) / 10
// 标记变量赋值
this.playTime = `${currentTime};${num}`
},
},
destroyed () {
// 判断用户 是否播放
if(this.playTime){
this.setTimes(this.playTime)
}
}
ps