indexedDB 通過索引查詢資料

admin發表於2019-07-27

通過索引查詢資料是一個較大的話題,比如利用索引遍歷資料或者索引結合遊標查詢資料等。

本文介紹一下利用索引物件的get()方法獲取指定主鍵的資料,非常的簡單。

目的是讓讀者進一步加強對於索引的理解。

首先看一段程式碼例項:

[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',{keyPath:"id"});
    objectStore.createIndex("xingbie","sex",{ unique: false });
    objectStore.createIndex("xingming","name",{ unique: true });
  }
}
request.onsuccess = (ev) => {
  let db = ev.target.result;
  let odiv=document.getElementById("ant");

  let transaction = db.transaction(['students'], 'readwrite');
  let objectStore = transaction.objectStore('students');
  for(let i=0;i<students.length;i++){
    objectStore.add(students[i]);
  }

  let IDBIndexSex = objectStore.index("xingbie");
  let getRequest = IDBIndexSex.get("女");
  getRequest.onsuccess=function(ev){
    odiv.innerHTML=this.result.name;
  }
  getRequest.onerror=function(ev){
    odiv.innerHTML="讀取失敗";
  }
}
</script>
</head>
<body>
  <div id="ant"></div>
</body>
</html>

程式碼執行效果截圖如下:

a:3:{s:3:\"pic\";s:43:\"portal/201907/27/144918zd8i3sm535335sd3.jpg\";s:5:\"thumb\";s:0:\"\";s:6:\"remote\";N;}

程式碼分析如下:

(1).在indexedDB 查詢資料一章節介紹了IDBObjectStore.get() 方法查詢資料。

(2).通過IDBObjectStore.get() 方法獲取資料是基於主鍵來查詢的。

(3).而通過 IDBIndexSex.get()方法獲取資料是基於索引來查詢的。

(4).假設基於索引"xingbie"查詢資料,那麼資料此時基於索引值進行排序,圖示如下:

aid[3437]

(4).指定索引值的資料可能不止一個,比如性別為"女"的學生有兩個。

(5).IDBIndexSex.get()方法只能獲取最前面的那個資料,頁面顯示結果是"李四"。

如果想要獲取所有具有指定索引值得資料可以參閱indexedDB 遍歷資料一章節。

相關文章