StorageAccessHandle: estimate() 属性

注意: 了解用法,请参阅 StorageManager.estimate()

语法

js
handle.estimate()

参数

无。

返回值

一个 Promise,它将完成并返回一个未分区 StorageEstimate 对象。

异常

SecurityError DomException

如果未授予访问权限,则会抛出此异常。

参阅 StorageManager.estimate()

示例

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

注意: 有关更完整的示例,请参阅 使用存储访问 API

规范

规范
将存储访问 API (SAA) 扩展到非 Cookie 存储
# ref-for-dom-storageaccesshandle-estimate

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅