The message
read-only property of the SpeechRecognitionErrorEvent
interface returns a message describing the error in more detail.
The message
read-only property of the SpeechRecognitionErrorEvent
interface returns a message describing the error in more detail.
A string containing more details about the error that was raised. Note that the spec does not define the exact wording of these messages — this is up to the implementors to decide upon.
js
const recognition = new SpeechRecognition(); recognition.onerror = (event) => { console.log(`Speech recognition error detected: ${event.error}`); console.log(`Additional information: ${event.message}`); };
Specification |
---|
Web Speech API # dom-speechrecognitionerrorevent-message |
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
message |
77 | 79 | No | No | 64 | 14.1 | 77 | 77 | No | 55 | 14.5 | 12.0 |
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/SpeechRecognitionErrorEvent/message