我正在使用localforage及其IndexedDB驱动程序来存储简单的键值对。但是在尝试删除或更新值时遇到了问题。
每当我使用现有条目的键调用localforage.removeItem("existingKey")
或localforage.setItem("existingKey", "some value")
时,不会释放内存。
使用WebSQL而不是IndexedDB时,行为不会发生。
Example on JsBin(仅限在Chrome中使用navigator.storage
)