我试图在到达其timecode属性时显示一个javascript对象的“ text”属性以显示在控制台中。正在将“ timecode”属性与Vimeo播放器中的经过时间进行比较。很好,这很好-我遇到的问题是由于Vimeo API每秒返回多个毫秒数据“匹配”,所以我看到我的文本在控制台中多次弹出。
谁能建议一次只显示一次每个文本属性?
notes_ex = [
{
timecode: 2,
text: 'Hi there!'
},
{
timecode: 7,
text: 'Hi again!'
}
];
function ready(player_id) {
var player = $f(player_id);
player.addEvent('ready', function() {
console.log('ready');
player.addEvent('playProgress', onPlayProgress);
});
function onPlayProgress(data, id) {
timeElapsed = Math.floor(data.seconds);
console.log('timeElapsed:' + timeElapsed);
while (timeElapsed++) {
for (var i = 0; i < notes_ex.length; i++) {
timecode = notes_ex[i].timecode;
if (timecode === timeElapsed) {
console.log(notes_ex[i].text);
}
}
break;
}
}
最佳答案
您是否能够分配第二个变量来表示何时被触发?所以像这样:
var z = 0;
if (timecode === timeElapsed && z == 0) {
console.log(notes_ex[i].text);
z++;
}
有点不完整,但是您了解了原理...