本地儲存 localStorage的注意事項

2021-10-08 05:46:33 字數 388 閱讀 8600

1、本地儲存localstorage裡面只能儲存字串格式,因此如果需要儲存物件格式的資料,需要把物件轉換成字串格式。

使用json.stringify(***)

2.獲取本地儲存的資料,需要把裡面的字串轉換成物件格式

使用json.parse(***),這樣的到的資料才能使用。

注:1、儲存操作:localstorage.setitem("***",json.stringify(***x)).

2、獲取本地儲存操作:localstorage.getitem("***")

***為儲存在本地儲存的key,***x為資料物件。

060JS 本地儲存localStorage

doctype html en utf 8 viewport content width device width,initial scale 1.0 x ua compatible content ie edge document title head 生命週期永久生效,除非手動刪除否則關閉頁面也...

html5本地儲存Localstorage屬性

html5中,新加入了乙個localstorage特性,這個特性主要是用來作為本地儲存來使用的。並且在ie8以上的ie版本才支援localstorage這個屬性。儲存 localstorage.setitem key value 檢索 var check localstorage.getitem k...

HTML5本地儲存Localstorage的應用

localstorage可以說是對cookie的優化,使用它可以方便在客戶端儲存資料,並且不會隨著http傳輸,但也不是沒有問題 localstorage大小限制在500萬字元左右,各個瀏覽器不一致 localstorage在隱私模式下不可讀取 localstorage本質是在讀寫檔案,資料多的話會...