Web Speech API的语音合成接口是语音服务的控制器接口;这可以用于检索设备上可用的合成声音、启动和暂停语音以及其他命令的信息。
const synth = window.speechSynthesis;
var text = '你好';
const utterThis = new SpeechSynthesisUtterance(text);
synth.speak(utterThis);//开始说话
synth.pause();//暂停
synth.resume();//继续
synth.cancel();//停止