您好,登錄后才能下訂單哦!
本篇內容主要講解“怎么使用JS代碼計算LocalStorage容量”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“怎么使用JS代碼計算LocalStorage容量”吧!
localStorage
的容量大家都知道是5M
,但是卻很少人知道怎么去驗證,而且某些場景需要計算localStorage
的剩余容量時,就需要我們掌握計算容量的技能了~~
我們以10KB
一個單位,也就是10240B
,1024B
就是10240
個字節的大小,我們不斷往localStorage
中累加存入10KB
,等到超出最大存儲時,會報錯,那個時候統計出所有累積的大小,就是總存儲量了!
注意:計算前需要先清空LocalStorage
let str = '0123456789' let temp = '' // 先做一個 10KB 的字符串 while (str.length !== 10240) { str = str + '0123456789' } // 先清空 localStorage.clear() const computedTotal = () => { return new Promise((resolve) => { // 不斷往 LocalStorage 中累積存儲 10KB const timer = setInterval(() => { try { localStorage.setItem('temp', temp) } catch { // 報錯說明超出最大存儲 resolve(temp.length / 1024 - 10) clearInterval(timer) // 統計完記得清空 localStorage.clear() } temp += str }, 0) }) } (async () => { const total = await computedTotal() console.log(`最大容量${total}KB`) })()
最后得出的最大存儲量為5120KB ≈ 5M
計算已使用容量,我們只需要遍歷localStorage
身上的存儲屬性,并計算每一個的length
,累加起來就是已使用的容量了~~~
const computedUse = () => { let cache = 0 for(let key in localStorage) { if (localStorage.hasOwnProperty(key)) { cache += localStorage.getItem(key).length } } return (cache / 1024).toFixed(2) } (async () => { const total = await computedTotal() let o = '0123456789' for(let i = 0 ; i < 1000; i++) { o += '0123456789' } localStorage.setItem('o', o) const useCache = computedUse() console.log(`已用${useCache}KB`) })()
可以查看已用容量
我們已經計算出總容量和已使用容量,那么剩余可用容量 = 總容量 - 已使用容量
const computedsurplus = (total, use) => { return total - use } (async () => { const total = await computedTotal() let o = '0123456789' for(let i = 0 ; i < 1000; i++) { o += '0123456789' } localStorage.setItem('o', o) const useCache = computedUse() console.log(`剩余可用容量${computedsurplus(total, useCache)}KB`) })()
可以得出剩余可用容量
到此,相信大家對“怎么使用JS代碼計算LocalStorage容量”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。