IDBDatabase: close() 方法
注意:此功能在 Web Workers 中可用。
IDBDatabase
接口的 close()
方法立即返回,并在单独的线程中关闭连接。
连接实际上只有在使用此连接创建的所有事务完成后才会关闭。调用此方法后,无法为此连接创建新事务。如果关闭操作正在进行,则创建事务的方法会抛出异常。
语法
js
close()
参数
无。
返回值
无 (undefined
)。
示例
js
// Let us open our database
const DBOpenRequest = window.indexedDB.open("toDoList", 4); // opening a database.
// Create event handlers for both success and failure of
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.
db = DBOpenRequest.result;
// now let's close the database again!
db.close();
};
规范
规范 |
---|
Indexed Database API 3.0 # ref-for-dom-idbdatabase-close② |
浏览器兼容性
BCD 表仅在启用 JavaScript 的浏览器中加载。
另请参阅
- 使用 IndexedDB
- 启动事务:
IDBDatabase
- 使用事务:
IDBTransaction
- 设置密钥范围:
IDBKeyRange
- 检索和修改您的数据:
IDBObjectStore
- 使用游标:
IDBCursor
- 参考示例:待办事项通知 (查看示例)。