JavaScript 콘솔 (한 줄 버전)에서이 스 니펫을 실행합니다.
var _lsTotal=0,_xLen,_x;for(_x in localStorage){ if(!localStorage.hasOwnProperty(_x)){continue;} _xLen= ((localStorage[_x].length + _x.length)* 2);_lsTotal+=_xLen; console.log(_x.substr(0,50)+" = "+ (_xLen/1024).toFixed(2)+" KB")};console.log("Total = " + (_lsTotal / 1024).toFixed(2) + " KB");
읽기 위해 여러 줄에 동일한 코드
var _lsTotal = 0,
_xLen, _x;
for (_x in localStorage) {
if (!localStorage.hasOwnProperty(_x)) {
continue;
}
_xLen = ((localStorage[_x].length + _x.length) * 2);
_lsTotal += _xLen;
console.log(_x.substr(0, 50) + " = " + (_xLen / 1024).toFixed(2) + " KB")
};
console.log("Total = " + (_lsTotal / 1024).toFixed(2) + " KB");
또는 편리한 사용을 위해 책갈피의 '위치'필드에이 텍스트를 추가하십시오.
javascript: var x, xLen, log=[],total=0;for (x in localStorage){if(!localStorage.hasOwnProperty(x)){continue;} xLen = ((localStorage[x].length * 2 + x.length * 2)/1024); log.push(x.substr(0,30) + " = " + xLen.toFixed(2) + " KB"); total+= xLen}; if (total > 1024){log.unshift("Total = " + (total/1024).toFixed(2)+ " MB");}else{log.unshift("Total = " + total.toFixed(2)+ " KB");}; alert(log.join("\n"));
댓글의 요청에 따라 PS 스 니펫이 업데이트됩니다. 이제 계산에는 키 자체의 길이가 포함됩니다. 자바 스크립트의 문자는 UTF-16 (2 바이트 차지)으로 저장되기 때문에 각 길이에 2를 곱합니다.
PPS는 Chrome과 Firefox에서 모두 작동합니다.