Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. SpeechRecognitionErrorEvent

SpeechRecognitionErrorEvent

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

TheSpeechRecognitionErrorEvent interface of theWeb Speech API represents error messages from the recognition service.

Event SpeechRecognitionErrorEvent

Constructor

SpeechRecognitionErrorEvent()

Creates a newSpeechRecognitionErrorEvent object.

Instance properties

SpeechRecognitionErrorEvent also inherits properties from its parent interface,Event.

SpeechRecognitionErrorEvent.errorRead only

Returns the type of error raised.

SpeechRecognitionErrorEvent.messageRead only

Returns a message describing the error in more detail.

Examples

js
const recognition = new SpeechRecognition();recognition.onerror = (event) => {  console.log(`Speech recognition error detected: ${event.error}`);  console.log(`Additional information: ${event.message}`);};

Specifications

Specification
Web Speech API
# speechrecognitionerrorevent

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp