This commit is contained in:
parent
9e90543007
commit
ea865d5ccd
|
@ -167,16 +167,16 @@ const loadVideo = () => {
|
|||
if (videoPlayer) {
|
||||
dp.value = videojs("videoPlayer", options);
|
||||
}
|
||||
videojs.hook("beforeerror", (player, err) => {
|
||||
// Video.js 在切换/指定 source 后立即会触发一个 err=null 的错误,这里过滤一下
|
||||
console.log("播放器实例", player, err);
|
||||
if (err !== null) {
|
||||
dp.value.src(url);
|
||||
}
|
||||
// videojs.hook("beforeerror", (player, err) => {
|
||||
// // Video.js 在切换/指定 source 后立即会触发一个 err=null 的错误,这里过滤一下
|
||||
// console.log("播放器实例", player, err);
|
||||
// if (err !== null) {
|
||||
// dp.value.src(url);
|
||||
// }
|
||||
|
||||
// 清除错误,避免 error 事件在控制台抛出错误
|
||||
return null;
|
||||
});
|
||||
// // 清除错误,避免 error 事件在控制台抛出错误
|
||||
// return null;
|
||||
// });
|
||||
};
|
||||
// 使用生命钩子
|
||||
onMounted(() => {
|
||||
|
|
Loading…
Reference in New Issue