The FetchEvent() constructor creates a new FetchEvent object.
Syntax
var fetchEvent = new FetchEvent(type, init);
Parameters
type- A
DOMStringobject specifying which event the object represents. This is alwaysfetchfor Fetch events. initOptional-
An object conforming to the
FetchEventInitdictionary, containing options to apply to the event object. Options are as follows:clientIdRead only- The
Clientthat the current service worker is controlling. isReloadRead only- A
Booleanthat signifies whether the page was reloaded or not when the event was dispatched.trueif yes, andfalseif not. Typically, pressing the refresh button in a browser is a reload, while clicking a link and pressing the back button is not. If not present, it defaults tofalse. preloadResponseRead only- A
Promisewhich returns a previously-loaded response to the client. replacesClientIdRead only- A
DOMStringwhich identifies the client which is being replaced byresultingClientId. resultingClientIdRead only- A
DOMStringcontaining the newclientIdif the client changes as a result of the page load. requestRead only- The
Requestobject that would have triggered the event handler.
Specifications
| Specification | Status | Comment |
|---|---|---|
| Service Workers The definition of 'FetchEvent() constructor' in that specification. |
Working Draft | Initial definition. |
Browser compatibility
The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
FetchEvent() constructor | Chrome Full support 40 | Edge Full support ≤18 | Firefox
Full support
44
| IE No support No | Opera Full support 27 | Safari No support No | WebView Android Full support 40 | Chrome Android Full support 40 | Firefox Android Full support 44 | Opera Android Full support 27 | Safari iOS No support No | Samsung Internet Android Full support 4.0 |
Legend
- Full support
- Full support
- No support
- No support
- Experimental. Expect behavior to change in the future.
- Experimental. Expect behavior to change in the future.
- See implementation notes.
- See implementation notes.
