App下載

IndexedDB前端客戶(hù)端數(shù)據(jù)庫(kù)簡(jiǎn)易使用介紹!

著名電影電視劇觀眾 2021-08-10 14:27:20 瀏覽數(shù) (2639)
反饋

 今天和大家介紹有關(guān)于:“IndexedDB前端客戶(hù)端數(shù)據(jù)庫(kù)簡(jiǎn)易使用介紹! ”這方面的相關(guān)內(nèi)容下面是有關(guān)于這方面的相關(guān)內(nèi)容分享!

IndexedDB介紹

IndexedDB是一種能在瀏覽器中持久的存儲(chǔ)結(jié)構(gòu)化數(shù)據(jù)的對(duì)象數(shù)據(jù)庫(kù),并且為web應(yīng)用提供了豐富的查詢(xún)能力。

相比于Web SQL數(shù)據(jù)庫(kù)它更加簡(jiǎn)單,而且官方標(biāo)準(zhǔn)中關(guān)于Web SQL的工作已經(jīng)停止。

相比于Web Storage,IndexedDB存儲(chǔ)空間是無(wú)上限且永久的。

創(chuàng)建數(shù)據(jù)庫(kù)

IndexedDB是按域名分配獨(dú)立空間,一個(gè)獨(dú)立域名下可以創(chuàng)建多個(gè)數(shù)據(jù)庫(kù),每個(gè)數(shù)據(jù)庫(kù)可以創(chuàng)建多個(gè)對(duì)象存儲(chǔ)空間(表/對(duì)象倉(cāng)庫(kù)),一個(gè)對(duì)象存儲(chǔ)空間可以存儲(chǔ)多個(gè)對(duì)象數(shù)據(jù)(索引的字段)。

function openDB(){
    var request = indexedDB.open(dbName,dbVer);//如果數(shù)據(jù)庫(kù)存在就打開(kāi),如果數(shù)據(jù)庫(kù)不存在就去新建
    request.onsuccess = function(e){
    }
    request.onerror = function(e){
    }
    //創(chuàng)建新數(shù)據(jù)庫(kù),或者數(shù)據(jù)庫(kù)版本號(hào)被更改的時(shí)候出發(fā)onupgradeneeded事件,并執(zhí)行回調(diào)函數(shù)
    request.onupgradeneeded = function(e){
        
    }
}

indexedDB.open方法用于創(chuàng)建數(shù)據(jù)庫(kù),里面?zhèn)鲀蓚€(gè)參數(shù)(數(shù)據(jù)庫(kù)名,數(shù)據(jù)庫(kù)版本),request.onupgradeneeded方法在創(chuàng)建新數(shù)據(jù)庫(kù),或者數(shù)據(jù)庫(kù)版本號(hào)改變時(shí)調(diào)用

創(chuàng)建對(duì)象存儲(chǔ)空間

request.onupgradeneeded = function(e){
        db = e.target.result;
        //判斷是否有這個(gè)對(duì)象倉(cāng)庫(kù)的存在
        if(!db.objectStoreNames.contains('Users')){
            //如果對(duì)象倉(cāng)庫(kù)不存在,創(chuàng)建一個(gè)新的對(duì)象倉(cāng)庫(kù)(keyPath,主鍵 ; autoIncrement,是否自增),會(huì)返回一個(gè)對(duì)象(objectStore)
            var store = db.createObjectStore('Users',{keyPath:'id',autoIncrement:true});
            //指定可以被索引的字段,unique字段是否唯一,可以創(chuàng)建多個(gè)索引
            store.createIndex('username','username',{unique:false})
        }
    }

store.createIndex創(chuàng)建索引字段,里面?zhèn)魅齻€(gè)參數(shù)(索引命名,索引字段,是否唯一)

事務(wù)(transaction)

對(duì)IndexedDB的查詢(xún)和更新都是包含在一個(gè)事務(wù)(transaction)中,以此來(lái)保證這些操作要么一起成功,要么一起失敗。

function dataHandle(data){
    //創(chuàng)建事務(wù)對(duì)象
    var ts = db.transaction('Users','readwrite');
    //通過(guò)事務(wù)對(duì)象獲取對(duì)象倉(cāng)庫(kù)
    var store = ts.objectStore('Users');
    //向倉(cāng)庫(kù)添加數(shù)據(jù)
    var req = store.put(data);
    req.onsuccess = function(){
        
    }
}

對(duì)倉(cāng)庫(kù)store的操作:

  • put()添加數(shù)據(jù),參數(shù)為要保存的對(duì)象,如果數(shù)據(jù)主鍵(keypath)已存在相同的則更改數(shù)據(jù)。
  • add()添加數(shù)據(jù),參數(shù)為要保存的對(duì)象,如果數(shù)據(jù)主鍵(keypath)已存在相同的則保存失敗。
  • delete()刪除數(shù)據(jù),傳入?yún)?shù)為目標(biāo)數(shù)據(jù)的主鍵。get()獲取數(shù)據(jù),傳入?yún)?shù)為目標(biāo)數(shù)據(jù)的主鍵。

遍歷數(shù)據(jù)

通過(guò)游標(biāo)cursor檢索范圍內(nèi)的對(duì)象倉(cāng)庫(kù)中的數(shù)據(jù):

var range = IDBKeyRange.lowerBound(1);//指定游標(biāo)檢索范圍
var req = store.openCursor(range);//創(chuàng)建游標(biāo)
dbData = [];
req.onsuccess = function(){
    var cursor = this.result;
    if(cursor){
        dbData.push(cursor.value);
        cursor.continue();//循環(huán)讀取數(shù)據(jù)直到結(jié)束
    }else{
        
    }
}

IDBKeyRange主要的幾個(gè)方法:

  • IDBKeyRange.bound(n1, n2, false, false); 范圍從n1到n2的主鍵,第三四個(gè)參數(shù)為是否包含n1或n2
  • IDBKeyRange.only(n);范圍一個(gè)主鍵
  • IDBKeyRange.lowerBound(n, false);大于n的主鍵集合
  • IDBKeyRange.upperBound(n, false);小于n的主鍵集合

查詢(xún)數(shù)據(jù)

能被查詢(xún)的數(shù)據(jù)需要被store.createIndex()創(chuàng)建過(guò)索引

   var store = ts.objectStore('Users');
    var index = store.index("username");//打開(kāi)數(shù)據(jù)庫(kù)索引
    var range = IDBKeyRange.only(keyName);//傳遞一個(gè)單鍵(索引的值)獲取range
    var req = index.openCursor(range);

刪除數(shù)據(jù)庫(kù)

indexedDB.deleteDatabase("數(shù)據(jù)庫(kù)名稱(chēng)");

總結(jié)

以上完成了創(chuàng)建數(shù)據(jù)庫(kù),創(chuàng)建對(duì)象儲(chǔ)存空間,通過(guò)事務(wù)對(duì)數(shù)據(jù)進(jìn)行遍歷,添加,查詢(xún)的操作。代碼地址Demo地址 ,小編希望今天對(duì)于“IndexedDB前端客戶(hù)端數(shù)據(jù)庫(kù)簡(jiǎn)易使用介紹! ”這篇文章的分享對(duì)大家的學(xué)習(xí)有所幫助,更多的內(nèi)容都可以在W3Cschool了解學(xué)習(xí)。


0 人點(diǎn)贊