我正在尝试显示 javascript 对象的“文本”属性以在达到其时间码属性时显示在控制台中。“时间码”属性与 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;
}
}