mirror of
https://github.com/langyuxiansheng/vue-aliplayer-v2.git
synced 2025-04-06 03:57:55 +08:00
更新
This commit is contained in:
parent
d2bd829a6b
commit
8a2c090db2
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "vue-aliplayer-v2",
|
"name": "vue-aliplayer-v2",
|
||||||
"version": "1.1.2",
|
"version": "1.1.3",
|
||||||
"author": "yxs",
|
"author": "yxs",
|
||||||
"description": "感谢每一位开源的开发者. 这是一个基于Alipayer 开发并封装成vue组件的播放器.",
|
"description": "感谢每一位开源的开发者. 这是一个基于Alipayer 开发并封装成vue组件的播放器.",
|
||||||
"main":"lib/vue-aliplayer-v2.umd.min.js",
|
"main":"lib/vue-aliplayer-v2.umd.min.js",
|
||||||
|
@ -159,13 +159,11 @@ export default {
|
|||||||
scriptTag.id = scriptID;
|
scriptTag.id = scriptID;
|
||||||
scriptTag.src = this.scriptSrc;
|
scriptTag.src = this.scriptSrc;
|
||||||
html[0].appendChild(scriptTag);
|
html[0].appendChild(scriptTag);
|
||||||
}
|
|
||||||
if(scriptTag && linkIDTag){
|
|
||||||
this.initPlayer();
|
|
||||||
} else {
|
|
||||||
scriptTag.addEventListener("load", () => {
|
scriptTag.addEventListener("load", () => {
|
||||||
this.initPlayer();
|
this.initPlayer();
|
||||||
});
|
});
|
||||||
|
} else {
|
||||||
|
this.initPlayer();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -480,8 +478,12 @@ export default {
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
beforeDestroy(){ //防止重复创建,需要销毁原来的播放器
|
beforeDestroy(){ //防止重复创建,需要销毁原来的播放器
|
||||||
// console.log('beforeDestroy');
|
|
||||||
this.player && this.player.dispose();
|
this.player && this.player.dispose();
|
||||||
|
const head = document.querySelector('head'); //移除所有的重复创建的标签
|
||||||
|
const nodes = document.querySelectorAll('script[src="https://g.alicdn.com/de/prismplayer/2.8.2/hls/aliplayer-hls-min.js"]');
|
||||||
|
head && nodes.forEach((item)=>{
|
||||||
|
head.removeChild(item);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user