web api instance property
FetchLaterResult: activated property
Limited availability
The activated read-only property of the FetchLaterResult interface returns a boolean specifying whether the deferred fetch has been sent.
Value
A Boolean.
Examples
Defer a POST request for around one minute and create a function to check if sent
const result = fetchLater("https://report.example.com", {
method: "POST",
body: JSON.stringify(myReport),
activateAfter: 60000 /* 1 minute */,
});
function checkIfFetched() {
return result.activated;
}
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.