JavaScript本地存儲的幾種方式小結
在JavaScript中,有幾種常用的方式可以在本地存儲數(shù)據(jù)。以下是主要的幾種本地存儲方式:
LocalStorage:
- 描述: LocalStorage 是 Web Storage API 的一部分,用于在用戶的瀏覽器中存儲鍵值對。數(shù)據(jù)不會過期,除非用戶明確刪除。
- 用法:
// 存儲數(shù)據(jù)
localStorage.setItem('key', 'value');
// 獲取數(shù)據(jù)
const value = localStorage.getItem('key');
// 移除數(shù)據(jù)
localStorage.removeItem('key');
// 清除所有數(shù)據(jù)
localStorage.clear();
SessionStorage:
- 描述: SessionStorage 也是 Web Storage API 的一部分,與 LocalStorage 類似,但它存儲的數(shù)據(jù)在頁面會話結束時(如用戶關閉瀏覽器標簽頁)會被清除。
- 用法:
// 存儲數(shù)據(jù)
sessionStorage.setItem('key', 'value');
// 獲取數(shù)據(jù)
const value = sessionStorage.getItem('key');
// 移除數(shù)據(jù)
sessionStorage.removeItem('key');
// 清除所有數(shù)據(jù)
sessionStorage.clear();
Cookies:
- 描述: Cookies 是小塊的數(shù)據(jù),由瀏覽器存儲在用戶的計算機上。它們通常用于存儲會話信息或用戶偏好設置,并會在每次請求時發(fā)送到服務器。
- 用法:
// 設置 Cookie
document.cookie = "username=John Doe; expires=Fri, 31 Dec 2023 23:59:59 GMT; path=/";
// 讀取 Cookie
function getCookie(name) {
let cookieArr = document.cookie.split(";");
for(let i = 0; i < cookieArr.length; i++) {
let cookiePair = cookieArr[i].split("=");
if(name == cookiePair[0].trim()) {
return decodeURIComponent(cookiePair[1]);
}
}
return null;
}
const username = getCookie("username");
// 刪除 Cookie
document.cookie = "username=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/";
IndexedDB:
- 描述: IndexedDB 是一種低級 API,用于在用戶的瀏覽器中存儲大量結構化數(shù)據(jù)。它類似于 SQL 數(shù)據(jù)庫,但使用的是事務性數(shù)據(jù)庫模型。
- 用法:
// 打開數(shù)據(jù)庫
let request = indexedDB.open("myDatabase", 1);
request.onupgradeneeded = function(event) {
let db = event.target.result;
let objectStore = db.createObjectStore("customers", { keyPath: "id" });
};
request.onsuccess = function(event) {
let db = event.target.result;
// 添加數(shù)據(jù)
let transaction = db.transaction(["customers"], "readwrite");
let objectStore = transaction.objectStore("customers");
let customer = {id: 1, name: "John Doe", age: 30};
objectStore.add(customer);
// 讀取數(shù)據(jù)
let transaction = db.transaction(["customers"]);
let objectStore = transaction.objectStore("customers");
let request = objectStore.get(1);
request.onerror = function(event) {
console.log("Unable to retrieve data");
};
request.onsuccess = function(event) {
if (request.result) {
console.log(request.result.name);
} else {
console.log("No data found");
}
};
};
Web SQL (已廢棄):
- 描述: Web SQL 是一種早期的本地數(shù)據(jù)庫技術,但已經(jīng)不被推薦使用,并且在現(xiàn)代瀏覽器中逐漸被淘汰。
- 用法: 不推薦使用,建議使用 IndexedDB 作為替代。
這些技術各有優(yōu)缺點,選擇哪一種取決于具體的應用場景和需求。對于簡單的鍵值對存儲,LocalStorage 和 SessionStorage 是很好的選擇;對于需要存儲更復雜和大量數(shù)據(jù)的情況,IndexedDB 更加合適;而 Cookies 則通常用于存儲需要在服務器和客戶端之間共享的信息。
以上就是JavaScript本地存儲的幾種方式小結的詳細內(nèi)容,更多關于JavaScript本地存儲方式的資料請關注腳本之家其它相關文章!
- Javascript本地存儲localStorage看這一篇就夠了
- 詳解JavaScript前端如何有效處理本地存儲和緩存
- JavaScript本地存儲全面解析
- javascript中l(wèi)ocalStorage本地存儲(新增、刪除、修改)使用詳細教程
- JavaScript中本地存儲(LocalStorage)和會話存儲(SessionStorage)的使用
- 基于js 本地存儲(詳解)
- JS實現(xiàn)本地存儲信息的方法(基于localStorage與userData)
- javascript中本地存儲localStorage,sessionStorage,cookie,indexDB的用法與使用場景匯總
相關文章
XHTML-Strict 內(nèi)允許出現(xiàn)的標簽
XHTML-Strict 內(nèi)允許出現(xiàn)的標簽...2006-12-12
bootstrap模態(tài)框關閉后清除模態(tài)框的數(shù)據(jù)方法
今天小編就為大家分享一篇bootstrap模態(tài)框關閉后清除模態(tài)框的數(shù)據(jù)方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-08-08
JavaScript實現(xiàn)Sleep函數(shù)的代碼
大家知道,JavaScript中沒有內(nèi)置我們常用的sleep()函數(shù),只有定時器setTimeout()和循環(huán)定時器setInterval()2007-03-03
javascript中的 object 和 function小結
JavaScript的面向對象是基于原形的,所有對象都有一條屬于自己的原型鏈。Object與Function可能很多看Object instanceof Function , Function instanceof Object都為true而迷惑,所以首先看下對象的實例。2016-08-08

