tt.getStorageInfo
基础库 1.0.0 开始支持本方法。
获取本地缓存数据的相关信息。
参数 object
标准对象输入,无扩展属性
success 返回参数说明
object 类型,属性如下:
名称 | 数据类型 | 描述 |
---|---|---|
keys | string[] | 本地数据缓存中的所有键名列表,如本地数据则返回空数组 |
currentSize | number | 占用空间大小,以 KB 为单位 |
limitSize | number | 存储空间上限,以 KB 为单位,一般来说会返回 10240 |
代码示例
tt.getStorageInfo({
success(res) {
console.log(res.keys);
console.log(res.currentSize);
console.log(res.limitSize);
},
fail(res) {
console.log(`getStorageInfo调用失败`);
}
});