如何在while循环中只显示一次文本?

时间:2013-03-20 20:41:56

标签: javascript jquery api vimeo

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

1 个答案:

答案 0 :(得分:2)

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

var z = 0;

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

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