StorageAccessHandle: estimate() Eigenschaft

Limited availability

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

Hinweis: Siehe StorageManager.estimate(), um die Verwendung zu verstehen.

Syntax

js
handle.estimate()

Parameter

Keine.

Rückgabewert

Ein Promise, das mit einem nicht partitionierten StorageEstimate Objekt erfüllt wird.

Ausnahmen

SecurityError DomException

Wird ausgelöst, wenn der Zugriff nicht gewährt wurde.

Siehe StorageManager.estimate()

Beispiele

js
document.requestStorageAccess({ estimate: true }).then(
  (handle) => {
    console.log("estimate access granted");
    await handle.estimate();
  },
  () => {
    console.log("estimate access denied");
  },
);

Hinweis: Siehe Verwendung der Storage Access API für ein vollständigeres Beispiel.

Spezifikationen

Specification
Extending Storage Access API (SAA) to non-cookie storage
# ref-for-dom-storageaccesshandle-estimate

Browser-Kompatibilität

BCD tables only load in the browser

Siehe auch