首页 前端 正文
  • 本文约403字,阅读需2分钟
  • 30
  • 0

vue 文字转语音播报

toRead(){
          if ('speechSynthesis' in window) {
            let readStr = '这是测试播报内容';
            if(this.speech){
              this.$message.error('当前正在播报,请勿重复点击!')
              return
            }
            this.$nextTick(()=>{
              this.speech = new SpeechSynthesisUtterance(readStr);
              this.speech.rate = 1 //语速:1-10
              this.speech.pitch = 1 //语调:1-2
              this.speech.onend = (()=>{
                this.speech = null //播报结束
              })
              this.synth.speak(this.speech);
            })
          }else{
            this.$message.error('当前浏览器不支持语音报单')
          }
        },

这原生API调用,理论上谷歌、EDG浏览器都支持,部分浏览器可能不支持

评论
更换验证码