FetchLaterResult

Limited availability

This feature is not Baseline because it does not work in some of the most widely-used browsers.

Experimental: This is an experimental technology
Check the Browser compatibility table carefully before using this in production.

The FetchLaterResult interface of the fetchLater() API is returned by the Window.FetchLater() method after a deferred fetch has been created.

It contains a single activated property that indicates whether the deferred request has been sent out or not.

After a successful sending, the whole response is ignored — including body and headers — so the response of the deferred fetch is never returned to the FetchLaterResult interface.

Instance properties

FetchLaterResult.activated Read only Experimental

A read-only boolean field that indicates whether the deferred request has been sent out. This is initially set to false and will then be updated by the browser once the deferred fetch has been sent.

Examples

Defer a POST request for around one minute and create a function to check if sent

js
const result = fetchLater("https://report.example.com", {
  method: "POST",
  body: JSON.stringify(myReport),
  activateAfter: 60000 /* 1 minute */,
});

function check_if_fetched() {
  return result.activated;
}

Specifications

No specification found

No specification data found for api.FetchLaterResult.
Check for problems with this page or contribute a missing spec_url to mdn/browser-compat-data. Also make sure the specification is included in w3c/browser-specs.

Browser compatibility

See also