indexedDB 刪除物件倉庫所有資料
有時候可能需要一次性刪除當前物件倉庫的所有資料。
indexedDB資料庫中的操作非常簡單,通過IDBObjectStore.clear()方法即可實現。
程式碼例項如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <script> let students=[ { id:1001, name:"張三", age:21, sex:"男" },{ id:1002, name:"李四", age:20, sex:"女" },{ id:1003, name:"王五", age:19, sex:"女" } ]; let request = window.indexedDB.open("antzone", 1); request.onupgradeneeded = (ev) => { let db = ev.target.result; if (!db.objectStoreNames.contains('students')) { let objectStore = db.createObjectStore('students',{autoIncrement:true}); objectStore.createIndex("xingbie","sex",{ unique: false }); } } request.onsuccess = (ev) => { let db = ev.target.result; let transaction = db.transaction(['students'], 'readwrite'); let objectStore = transaction.objectStore('students'); for(let i=0;i<students.length;i++){ objectStore.add(students[i]); } } </script> </head> <body> <p>為物件倉庫批量新增資料</p> </body> </html>
通過上述程式碼為指定物件倉庫新增了一些資料,程式碼執行效果截圖如下:
下面通過IDBObjectStore.clear()方法將其中的資料一次性清空。
上述程式碼改造如下:
[HTML] 純文字檢視 複製程式碼執行程式碼<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>螞蟻部落</title> <script> let students=[ { id:1001, name:"張三", age:21, sex:"男" },{ id:1002, name:"李四", age:20, sex:"女" },{ id:1003, name:"王五", age:19, sex:"女" } ]; let request = window.indexedDB.open("antzone", 1); request.onupgradeneeded = (ev) => { let db = ev.target.result; if (!db.objectStoreNames.contains('students')) { let objectStore = db.createObjectStore('students',{autoIncrement:true}); objectStore.createIndex("xingbie","sex",{ unique: false }); } } request.onsuccess = (ev) => { let db = ev.target.result; let transaction = db.transaction(['students'], 'readwrite'); let objectStore = transaction.objectStore('students'); let clearRequest = objectStore.clear(); clearRequest.onsuccess=function(){ console.log("清空成功") } clearRequest.onsuccess=function(){ console.log("清空失敗") } } </script> </head> <body> <p>為物件倉庫批量新增資料</p> </body> </html>
上述程式碼可以清空物件倉庫的所有資料,程式碼執行效果截圖如下:
上面程式碼已經清空了所有的資料,現在物件倉庫空空如也。
相關文章
- indexedDB 刪除資料庫Index資料庫
- indexedDB 刪除資料Index
- 如何刪除資料庫下的所有表(mysql)資料庫MySql
- (五)github刪除倉庫Github
- git 刪除本地倉庫Git
- Gitlab怎麼刪除倉庫Gitlab
- 2.11 刪除資料庫資料庫
- indexedDB 資料庫 索引Index資料庫索引
- indexedDB 資料庫版本Index資料庫
- IndexedDB 資料庫概述Index資料庫
- IndexedDB 資料庫用法Index資料庫
- IndexedDB 資料庫新增資料Index資料庫
- 【Git/Github】刪除遠端倉庫中的檔案/資料夾Github
- indexedDB 資料庫主鍵Index資料庫
- Laravel 資料庫裡的資料刪除Laravel資料庫
- Ant Design 原始碼倉庫被刪除原始碼
- linux刪除資料夾下所有檔案命令是什麼 linux刪除資料夾下內所有內容怎麼操作Linux
- 6.12php對資料庫的刪除和批量刪除PHP資料庫
- MongoDB資料庫中更新與刪除資料MongoDB資料庫
- Docker刪除倉庫中的映象問題Docker
- windows下Oracle資料庫完全刪除WindowsOracle資料庫
- 刪除linux下的oracle資料庫LinuxOracle資料庫
- PostgreSQL:資料庫的建立與刪除SQL資料庫
- 如何刪除Git倉庫中冗餘的tag?Git
- 教你玩轉Git-刪除遠端倉庫Git
- 刪除資料
- SQL Server無法刪除資料庫 "xxx",因為該資料庫當前正在使用(如何刪除一個Sql Server資料庫)SQLServer資料庫
- python 如何刪除資料夾下的所有檔案和子資料夾?Python
- mysql資料庫誤刪除操作說明MySql資料庫
- dbca刪除資料庫時選項灰色資料庫
- oracle資料庫建立、刪除索引等操作Oracle資料庫索引
- 【C/C++】資料庫刪除大表C++資料庫
- PG資料庫更新刪除卡死現象資料庫
- SRVCTL 刪除和新增資料庫服務資料庫
- whk我【資料刪除】你個【資料刪除】的
- 誤刪除儲存SqlServer資料庫資料恢復SQLServer資料庫資料恢復
- 小程式批次刪除雲資料庫裡的資料資料庫
- 刪除使用者及使用者下的所有資料