The error()
method of the Response
interface returns a new Response
object associated with a network error.
Note: This is mainly relevant to ServiceWorkers; the error method is used to return an error if you so wish it. An error response has its type
set to error
.
Note: An "error" Response never really gets exposed to script: such a response to a fetch()
would reject the promise.
var errorResponse = Response.error();
None.
A Response
object.
TBD (does not yet appear to be supported anywhere).
Specification | Status | Comment |
---|---|---|
Fetch The definition of 'error()' in that specification. | Living Standard |
Desktop | ||||||
---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | |
Basic support | Yes | Yes | Yes | No | Yes | Yes |
Mobile | |||||||
---|---|---|---|---|---|---|---|
Android webview | Chrome for Android | Edge Mobile | Firefox for Android | Opera for Android | iOS Safari | Samsung Internet | |
Basic support | No | No | ? | No | No | No | No |
© 2005–2018 Mozilla Developer Network and individual contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/Response/error