HTML5 的本地存儲 API 中的 localStorage 與 sessionStorage 在使用方法上是相同的,區(qū)別在于 sessionStorage 在關(guān)閉頁面后即被清空,而 localStorage 則會一直保存。我們這里以 localStorage 為例,簡要介紹下 HTML5 的本地存儲,并針對如遍歷等常見問題作一些示例說明。 localStorage 是 HTML5 本地存儲的 API,使用鍵值對的方式進(jìn)行存取數(shù)據(jù),存取的數(shù)據(jù)只能是字符串。不同瀏覽器對該 API 支持情況有所差異,如使用方法、最大存儲空間等。
一、localStorage API 基本使用方法
localStorage API 使用方法簡單易懂,如下為常見的 API 操作及示例: 設(shè)置數(shù)據(jù):localStorage.setItem(key,value); 示例:
for(var i=0; i<10; i++){
localStorage.setItem(i,i);
}
獲取數(shù)據(jù):localStorage.getItem(key) 獲取全部數(shù)據(jù):localStorage.valueOf() 示例:
for(var i=0; i<10; i++){
localStorage.getItem(i);
}
刪除數(shù)據(jù):localStorage.removeItem(key) 示例:
for(var i=0; i<5; i++){
localStorage.removeItem(i);
}
清空全部數(shù)據(jù):localStorage.clear() 獲取本地存儲數(shù)據(jù)數(shù)量:localStorage.length 獲取第 N 個數(shù)據(jù)的 key 鍵值:localStorage.key(N)
2. 遍歷 key 鍵值方法
for(var i=localStorage.length - 1 ; i >=0; i--){
console.log('第'+ (i+1) +'條數(shù)據(jù)的鍵值為:' + localStorage.key(i) +',數(shù)據(jù)為:' + localStorage.getItem(localStorage.key(i)));
}
3. 存儲大小限制測試及異常處理
3.1 數(shù)據(jù)存儲大小限制測試
不同瀏覽器對 HTML5 的本地存儲大小基本均有限制,一個測試的結(jié)果如下:
IE 9 > 4999995 + 5 = 5000000
firefox 22.0 > 5242875 + 5 = 5242880
chrome 28.0 > 2621435 + 5 = 2621440
safari 5.1 > 2621435 + 5 = 2621440
opera 12.15 > 5M (超出則會彈出允許請求更多空間的對話框)
測試代碼參考:
<!DOCTYPE html>
<html>
<head>
<script>
function log( msg ) {
console.log(msg);
alert(msg);
}</p>
<p> var limit;
var half = '1'; //這里會換成中文再跑一遍
var str = half;
var sstr;
while ( 1 ) {
try {
localStorage.clear();
str += half;
localStorage.setItem( 'cache', str );
half = str;
} catch ( ex ) {
break;
}
}
var base = str.length;
var off = base / 2;
var isLeft = 1;
while ( off ) {
if ( isLeft ) {
end = base - (off / 2);
} else {
end = base + (off / 2);
}</p>
<p> sstr = str.slice( 0, end );
localStorage.clear();
try {
localStorage.setItem( 'cache', sstr );
limit = sstr.length;
isLeft = 0;
} catch ( e ) {
isLeft = 1;
}</p>
<p> base = end;
off = Math.floor( off / 2 );
}</p>
<p> log( 'limit: ' + limit );
</script>
</html>
3.2 數(shù)據(jù)存儲異常處理
try{
localStorage.setItem(key,value);
}catch(oException){
if(oException.name == 'QuotaExceededError'){
console.log('超出本地存儲限額!');
//如果歷史信息不重要了,可清空后再設(shè)置
localStorage.clear();
localStorage.setItem(key,value);
}
}