Limited availability
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.
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.
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 check_if_fetched() {
return result.activated;
}
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4