我在我的 Cordova 应用程序中使用localForage 。
我想知道localforage的大小。基本上它被称为5mb限制。我的移动应用程序中将有超过 100mb 的数据。
var DefaultConfig = {
description: '',
driver: DefaultDriverOrder.slice(),
name: 'localforage',
// Default DB size is _JUST UNDER_ 5MB, as it's the highest size
// we can use without a prompt.
size: 4980736,
storeName: 'keyvaluepairs',
version: 1.0
};
大小为 4980736 字节,即 4.9MB。如果我将其增加到 100mb,它是否支持?