为了账号安全,请及时绑定邮箱和手机立即绑定

当时间是时间数组中的时间时,从单词数组中返回一个单词。

当时间是时间数组中的时间时,从单词数组中返回一个单词。

元芳怎么了 2022-10-13 09:41:28
我正在使用 React 为音频或视频文件构建转录服务。后端完成了,我得到了这两个数组:我有一个时间数组,以秒为单位:const timing = [0, 0.2, 0.8, 0.9, 1.3, 2]我还有一系列单词:const words = ["hello", "world", "I", "am", "John", "Smith"]我只想在时机合适时突出显示一个单词。除了无限的“if”语句之外,还有其他方法吗?if(time = timing[0]) {return words[0]}if(time = timing[1]) {return words[1]}...if(time = timing[n]) {return words[n]}(*时间等于视频/音频播放器)谢谢!
查看完整描述

3 回答

?
慕尼黑5688855

TA贡献1848条经验 获得超2个赞

如果你使用 dict 和 setInterval 会更容易


const words = {

    0: "hello",

  200: "world",

  800: "I",

  900: "am",

  1300: "John",

  2000: "Smith"

}


function speak(timing) {

    if(timing in words) {

    console.log(words[timing])

  }

}


current_timestamp = 0

function timer() {

    speak(current_timestamp)

  current_timestamp += 100

}

setInterval(timer, 100);


查看完整回答
反对 回复 2022-10-13
?
冉冉说

TA贡献1877条经验 获得超1个赞

const timing = [0, 0.2, 0.8, 0.9, 1.3, 2];

const words = ['hello', 'world', 'I', 'am', 'John', 'Smith'];


function getWord(timing, words, time) {

    return words[timing.indexOf(time)];

}


console.log(getWord(timing, words, 0.9));


查看完整回答
反对 回复 2022-10-13
?
不负相思意

TA贡献1777条经验 获得超10个赞

我认为你可以这样做:


const timing = [0, 0.2, 0.8, 0.9, 1.3, 2]


const words = ["hello", "world", "I", "am", "John", "Smith"];

var hashTable = {}

timing.forEach((i, index)=>{

  hashTable[i] = words[index];

});


console.log(hashTable)


   console.log(hashTable[timing[3]])


查看完整回答
反对 回复 2022-10-13
  • 3 回答
  • 0 关注
  • 187 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
微信客服

购课补贴
联系客服咨询优惠详情

帮助反馈 APP下载

慕课网APP
您的移动学习伙伴

公众号

扫描二维码
关注慕课网微信公众号