搪曰庇炕以下代码包含了一个数据库所有的 CRUD (增删改查)操作。
IndexedDB 大小限制
以下内容为 AI 回答:
85-2
获取可用的存储空间大小
navigator.storage.estimate().then((estimate) => {
console.log(
`已使用:`,
(
(estimate.usage / estimate.quota) * 100
).toFixed(2)
);
console.log(`可使用:`, (estimate.quota / 1024 / 1024).toFixed(2) + "MB");
});
6985

被折叠的 条评论
为什么被折叠?



