SpeechRecognitionError - 表示来自识别服务的错误消息

已过时
此功能已过时。虽然它可能仍在某些浏览器中工作,但是不鼓励使用,因为它可能随时被删除。尽量避免使用它。

SpeechRecognitionErrorWeb Speech API 的接口,表示来自识别服务的错误消息。

在 Web Speech API 规范中,SpeechRecognitionError 接口已重命名为 SpeechRecognitionErrorEvent

属性

SpeechRecognitionError 还从其父接口 Event 继承了属性。

SpeechRecognitionError.error 只读

返回引发的错误类型。

SpeechRecognitionError.message 只读

返回一条消息,更详细地描述错误。

实例

var recognition = new SpeechRecognition();

recognition.onerror = function(event) {
  console.log('检测到语音识别错误:' + event.error);
  console.log('附加信息:' + event.message);
}

桌面浏览器兼容性

特性ChromeEdgeFirefoxInternet ExplorerOperaSafari
基础支持33 webkit 1 未知 不支持 不支持 不支持 不支持
error33 webkit 1 未知 不支持 不支持 不支持 不支持
message33 webkit 1 未知 不支持 不支持 不支持 不支持

移动浏览器兼容性

特性AndroidChrome for AndroidEdge mobileFirefox for AndroidIE mobileOpera AndroidiOS Safari
基础支持 支持 webkit 1 支持 webkit 1 未知 不支持 未知 不支持 不支持
error 支持 webkit 1 支持 webkit 1 未知 不支持 未知 不支持 不支持
message 支持 webkit 1 支持 webkit 1 未知 不支持 未知 不支持 不支持

1. 您需要将代码放到网络服务器上,以便识别服务能够工作。

Firefox OS 权限

要在应用中使用语音识别,您需要在 manifest 中指定以下权限:

"permissions": {
  "audio-capture" : {
    "description" : "Audio capture"
  },
  "speech-recognition" : {
    "description" : "Speech recognition"
  }
}

您还需要一个特权应用程序,因此您还需要包括以下内容:

  "type": "privileged"

相关链接