From 8a2c090db29ee4eb2bf01936ef75f29fb2e06159 Mon Sep 17 00:00:00 2001 From: zhouliujun <1096432931@qq.com> Date: Mon, 16 Dec 2019 11:37:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- package.json | 2 +- packages/AliplayerV2/src/main.vue | 12 +++++++----- 2 files changed, 8 insertions(+), 6 deletions(-) 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); + }); } };