【发布时间】:2019-05-22 16:03:56
【问题描述】:
我想迭代 TextTrackCueList 的元素,它基本上是 HTML5 视频的字幕数组(供参考:https://developer.mozilla.org/en-US/docs/Web/API/TextTrack#Properties)。这是一个简化的代码:
new Vue ({
el: "#app",
data() {
return {
vid: null,
track: null,
cues: []
}
},
mounted() {
this.vid = this.$refs.vid;
this.track = this.vid.addTextTrack("captions");
this.track.mode = "showing";
this.cues = this.track.cues;
this.addCue(); //We add just one cue before the list is rendered
},
methods: {
addCue() {
let i = this.cues.length;
//The cue just shows during one second
let cue = new VTTCue(i, i+1, "Caption "+i);
this.track.addCue(cue);
}
}
});
.cues-list {
float: right;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
<div id="app">
<video ref="vid" width="50%" src="http://commondatastorage.googleapis.com/gtv-videos-bucket/sample/ElephantsDream.mp4" controls></video>
<div class="cues-list">
<ul>
<li v-for="cue in cues">
{{ cue.text }}
</li>
</ul>
<button @click="addCue">Add cue</button>
</div>
</div>
正如我们所见,cues 的列表在我们添加新提示时不会更新。我怀疑的原因是我没有使用 Vue.js (https://vuejs.org/v2/guide/list.html#Mutation-Methods) 覆盖的突变方法之一,因此 DOM 不会自动更新。实际上,我使用TextTrack.addCue() 添加提示,而不是Array.push(),因为TextTrack.cues 属性是只读的。是否有解决方法,例如手动更新虚拟 DOM 的方法?
感谢您的帮助。
【问题讨论】:
标签: javascript arrays vue.js html5-video