The FetchEvent()
constructor creates a new FetchEvent
object.
Syntax
var myFetchEvent = new FetchEvent(type, init);
Parameters
- type
- The type of the Event.
- init Optional
- An options object containing any custom settings that you want to apply to the event object. Options are as follows:
request
: TheRequest
object that would have triggered the event handler.clientId
: TheClient
that the current service worker is controlling. This property is not yet implemented in Chrome.isReload
: ABoolean
that signifies whether the page was reloaded or not when the event was dispatched.true
if yes, andfalse
if 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
.
Specifications
Specification | Status | Comment |
---|---|---|
Service Workers The definition of 'FetchEvent' 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.
Update compatibility data on GitHub
Desktop | Mobile | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|
FetchEvent() constructor | Chrome Full support 40 | Edge Full support Yes | 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.