0

我正在尝试显示 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;
    }
  } 
4

1 回答 1

2

您能否分配第二个变量来表示它何时被触发?所以是这样的:

var z = 0;

if (timecode === timeElapsed && z == 0) {
  console.log(notes_ex[i].text);
  z++;
}

有点不完整,但你明白了原理......

于 2013-03-20T20:48:02.120 回答