IDBDatabase: objectStoreNames 属性

Baseline 已广泛支持

此特性已相当成熟,可在许多设备和浏览器版本上使用。自 ⁨2015 年 7 月⁩以来,各浏览器均已提供此特性。

注意:此功能在 Web Workers 中可用。

IDBDatabase 接口的 objectStoreNames 只读属性是一个 DOMStringList,其中包含当前连接的数据库中对象仓库名称的列表。

一个 DOMStringList,其中包含当前连接的数据库中对象仓库名称的列表。

示例

js
// Let us open our database
const DBOpenRequest = window.indexedDB.open("toDoList", 4);

// these two event handlers act on the database being opened successfully, or not
DBOpenRequest.onerror = (event) => {
  note.appendChild(document.createElement("li")).textContent =
    "Error loading database.";
};

DBOpenRequest.onsuccess = (event) => {
  note.appendChild(document.createElement("li")).textContent =
    "Database initialized.";

  // store the result of opening the database in the db variable. This is used a lot below
  db = DBOpenRequest.result;

  // This line will log the names of the object stores of the connected database, which should be
  // an object that looks like { ['my-store-name'] }
  console.log(db.objectStoreNames);
};

规范

规范
Indexed Database API 3.0
# ref-for-dom-idbdatabase-objectstorenames①

浏览器兼容性

另见