2

我无法使用 Dart SpeechSynthesis 类构建 SpeechSynthesis 对象。Dart 编辑器抱怨:“类 'SpeechSynthesis' 没有默认构造函数”。

4

1 回答 1

2

这是一个工作示例:

import 'dart:html';
main() {
  var u = new SpeechSynthesisUtterance();
  u.text = 'Hello World';
  u.lang = 'en-US';
  u.rate = 1.2;
  window.speechSynthesis.speak(u);
}

有关 API 的更多详细信息,请参阅SpeechSynthesis 接口

于 2013-06-28T06:41:00.720 回答