diff --git a/package.json b/package.json index 45c7599..196064a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vue-aliplayer-v2", - "version": "1.1.2", + "version": "1.1.3", "author": "yxs", "description": "感谢每一位开源的开发者. 这是一个基于Alipayer 开发并封装成vue组件的播放器.", "main":"lib/vue-aliplayer-v2.umd.min.js", diff --git a/packages/AliplayerV2/src/main.vue b/packages/AliplayerV2/src/main.vue index 6dea2ea..a518d22 100644 --- a/packages/AliplayerV2/src/main.vue +++ b/packages/AliplayerV2/src/main.vue @@ -159,13 +159,11 @@ export default { scriptTag.id = scriptID; scriptTag.src = this.scriptSrc; html[0].appendChild(scriptTag); - } - if(scriptTag && linkIDTag){ - this.initPlayer(); - } else { scriptTag.addEventListener("load", () => { this.initPlayer(); }); + } else { + this.initPlayer(); } }, @@ -480,8 +478,12 @@ export default { } }, beforeDestroy(){ //防止重复创建,需要销毁原来的播放器 - // console.log('beforeDestroy'); 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); + }); } };