StorageAccessHandle:indexedDB 属性

如果授予了访问权限,则 StorageAccessHandle 接口的 indexedDB 属性将返回一个未分区 IDBFactory 对象;否则,将抛出一个 SecurityError DOMException

一个 IDBFactory 对象。

示例

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

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

规范

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

浏览器兼容性

BCD 表仅在启用 JavaScript 的浏览器中加载。

另请参阅