在最新的浏览器中,你可以使用 仓库经理,这是一个新的浏览器存储标准的实现,看看 这个 mozilla 文章。
let _storageStats = await navigator.storage.estimate();
console.log(_storageStats);
/*
Will prompt something like this
{quota: 15946471833, usage: 682}
Which is a representation of quota/usage in bytes
As you can see I get an insane quota of almost 16 GB
*/