bl.getStorageInfoSync
bl.getStorageInfo 的同步版本
参数说明
无
返回值
Object object
属性 | 类型 | 说明 | 版本 |
---|---|---|---|
keys | array.<string> | 当前 storage 中所有的 key | |
currentSize | number | 当前占用的空间大小, 单位 KB | |
limitSize | number | 限制的空间大小,单位 KB |
示例代码
try {
const res = bl.getStorageInfoSync();
console.log(res.keys);
console.log(res.currentSize);
console.log(res.limitSize);
} catch (e) {
// Do something when catch error
}