美文网首页
vue播报语音

vue播报语音

作者: _undefined | 来源:发表于2022-02-27 10:52 被阅读0次
  1. 使用 speak-tts
import Speech from 'speak-tts';

// ...

let speech = new Speech();
if (speech.hasBrowserSupport()) {
    speech.init({ lang: 'zh-CN' });
    speech.speak({ text: '你好~' });
} else {
    console.log('浏览器不支持SpeechSynthesis');
}
  1. 使用new Audio,播放离线语音
new Audio('/static/xxx.mp3').play();

相关文章

网友评论

      本文标题:vue播报语音

      本文链接:https://www.haomeiwen.com/subject/qfhlrrtx.html