AbortSignal: abort event
The abort
event of the Fetch API is fired when a fetch request is aborted, i.e. using AbortController.abort()
.
Examples
In the following snippets, we create a new AbortController
object, and get its AbortSignal
(available using the signal
property). Later on we check whether or not it the signal has been aborted using the onabort
property, and send an appropriate log to the console.
You can use the abort
event in an addEventListener
method:
var controller = new AbortController(); var signal = controller.signal; signal.addEventListener('abort', function() { console.log('Request aborted'); };
Or use the onabort
event handler property:
var controller = new AbortController(); var signal = controller.signal; signal.onabort = function() { console.log('Request aborted'); };
Specifications
Specification |
---|
DOM Standard (DOM) # eventdef-abortsignal-abort |
Browser compatibility
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
abort_event |
66 |
16 |
57 |
No |
53 |
11.1 |
66 |
66 |
57 |
47 |
11.3 |
9.0 |
See also
© 2005–2021 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Web/API/AbortSignal/abort_event