Movatterモバイル変換


[0]ホーム

URL:


  1. Web
  2. Web APIs
  3. CacheStorage
  4. keys()

CacheStorage: keys() method

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since April 2018.

Secure context: This feature is available only insecure contexts (HTTPS), in some or allsupporting browsers.

Note: This feature is available inWeb Workers.

Thekeys() method of theCacheStorage interface returns aPromise that will resolve with an array containing strings corresponding to all of the namedCache objects tracked by theCacheStorage object in the order they were created.Use this method to iterate over a list of allCache objects.

You can accessCacheStorage through theWindow.caches property in windows or through theWorkerGlobalScope.caches property in workers.

Syntax

js
keys()

Parameters

None.

Return value

APromise that resolves with an array of theCache names inside theCacheStorage object.

Examples

In this code snippet we wait for anactivate event, and then run awaitUntil() block that clears up any old, unused caches before a new service worker is activated.Here we have an allowlist containing the names of the caches we want to keep (cacheAllowlist).We return the keys of the caches in theCacheStorage object usingkeys(), then check each key to see if it is in the allowlist.If not, we delete it usingCacheStorage.delete().

js
this.addEventListener("activate", (event) => {  const cacheAllowlist = ["v2"];  event.waitUntil(    caches.keys().then((keyList) =>      Promise.all(        keyList.map((key) => {          if (!cacheAllowlist.includes(key)) {            return caches.delete(key);          }          return undefined;        }),      ),    ),  );});

Specifications

Specification
Service Workers Nightly
# cache-storage-keys

Browser compatibility

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2026 Movatter.jp