mirror of
https://github.com/langyuxiansheng/vue-aliplayer-v2.git
synced 2025-04-05 19:41:39 +08:00
修复部分已知bug
This commit is contained in:
parent
a3c167b360
commit
2a8be784c4
@ -378,6 +378,8 @@ See [Configuration Reference](https://cli.vuejs.org/config/).
|
||||
|
||||
## 更新日志
|
||||
|
||||
> v1.2.1 修复指定id情况下,播放器报错"没有为播放器指定容器",目前移除外部指定id的方式,所有的播放器id都由内部生成,不再由外部指定容器(外部指定的意义并不大), 感谢"liyoro"的反馈和建议.
|
||||
|
||||
> v1.2.1 修复直播播放的情况下,播放器已经销毁,而后台还在继续下载资源造成卡顿的bug,修复多个播放器只渲染1个的bug, 感谢"Jonauil"和"guangming95"两位网友的反馈和建议.
|
||||
|
||||
> v1.2.0 修复播放源(MP4/m3u8)之间切换无法正常播放的bug,增加options配置项动态响应功能,优化部分播放器的逻辑, 感谢"liyoro"网友的反馈和建议.
|
||||
|
@ -1,7 +1,7 @@
|
||||
<template>
|
||||
<div id="app">
|
||||
<template v-if="!isShowMultiple && show">
|
||||
<vue-aliplayer-v2 :source="source" ref="VueAliplayerV3" :options="options" />
|
||||
<vue-aliplayer-v2 :source="source" ref="VueAliplayerV2" :options="options" />
|
||||
</template>
|
||||
<div v-if="isShowMultiple && show" class="show-multiple">
|
||||
<template v-for="x in 5">
|
||||
@ -10,13 +10,15 @@
|
||||
</div>
|
||||
<p class="remove-text" v-if="!show">播放器已销毁!</p>
|
||||
<div class="player-btns">
|
||||
<template v-if="!isShowMultiple && show">
|
||||
<span @click="play()">播放</span>
|
||||
<span @click="pause()">暂停</span>
|
||||
<span @click="replay()">重播</span>
|
||||
<span @click="getCurrentTime()">播放时刻</span>
|
||||
<span @click="getStatus()">获取播放器状态</span>
|
||||
</template>
|
||||
<span @click="show = !show">{{ show ? '销毁' : '重载' }}</span>
|
||||
<span @click="options.isLive = !options.isLive">{{ options.isLive ? '切换普通模式' : '切换直播模式' }}</span>
|
||||
<span @click="getStatus()">获取播放器状态</span>
|
||||
<span @click="showMultiple()">{{isShowMultiple ? '显示1个播放器' : '显示多个播放器'}}</span>
|
||||
</div>
|
||||
<div class="source-box">
|
||||
|
@ -389,7 +389,7 @@ var es6_regexp_to_string = __webpack_require__("cc1d");
|
||||
|
||||
if (this.source) this.config.source = this.source; //播放源
|
||||
|
||||
if (this.id) this.config.id = this.id;
|
||||
// if (this.id) this.config.id = this.id;
|
||||
this.player && this.player.dispose(); //防止实例的重复
|
||||
|
||||
this.player = Aliplayer(this.config);
|
||||
|
@ -1,8 +1,8 @@
|
||||
{
|
||||
"name": "vue-aliplayer-v2",
|
||||
"version": "1.2.1",
|
||||
"version": "1.2.2",
|
||||
"author": "yxs",
|
||||
"description": "感谢每一位开源的开发者. 这是一个基于Alipayer 开发并封装成vue组件的播放器.",
|
||||
"description": "感谢每一位开源的开发者. 这是一个基于Alipayer 开发并封装成vue组件的集成播放器.",
|
||||
"main":"lib/vue-aliplayer-v2.umd.min.js",
|
||||
"private": false,
|
||||
"license": "MIT",
|
||||
|
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div :id="config.id"></div>
|
||||
<div :id="playerId"></div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
@ -15,11 +15,11 @@ export default {
|
||||
type: [String],
|
||||
default: null
|
||||
},
|
||||
id:{
|
||||
required: false,
|
||||
type: [String],
|
||||
default: null
|
||||
},
|
||||
// id:{
|
||||
// required: false,
|
||||
// type: [String],
|
||||
// default: null
|
||||
// },
|
||||
cssLink:{ //css版本源
|
||||
required: false,
|
||||
type: [String],
|
||||
@ -34,8 +34,9 @@ export default {
|
||||
data () {
|
||||
return {
|
||||
player: null, //播放器实例
|
||||
playerId: `player-${Math.random().toString(36).substr(2).toLocaleUpperCase()}`,
|
||||
config:{
|
||||
id: `player-${Math.random().toString(36).substr(2).toLocaleUpperCase()}`, //播放器的ID
|
||||
id: null, //播放器的ID
|
||||
width: '100%',
|
||||
autoplay: true,
|
||||
// isLive: true,
|
||||
@ -200,7 +201,7 @@ export default {
|
||||
}
|
||||
}
|
||||
if(this.source) this.config.source = this.source; //播放源
|
||||
if(this.id) this.config.id = this.id
|
||||
this.config.id = this.playerId; //赋值播放器容器id
|
||||
this.player && this.player.dispose(); //防止实例的重复
|
||||
this.player = Aliplayer(this.config);
|
||||
for(const ev in this.events){
|
||||
|
Loading…
x
Reference in New Issue
Block a user