每一幅作品,都是艺术家对自己生命的延伸。------灵遁者
清楚缓存的函数为uni.clearStorage();
以及还有计算缓存大小的函数
|-----------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------|
| 1 2 3 4 5 6 7
| hljs vue uni.getStorageInfo({ success: function (res) { console.log(res.keys); console.log(res.currentSize); console.log(res.limitSize); } });
|
success 返回参数说明
| 参数 | 类型 | 说明 | |-------------|---------------|---------------------| | keys | Array<String> | 当前 storage 中所有的 key | | currentSize | Number | 当前占用的空间大小, 单位:kb | | limitSize | Number | 限制的空间大小, 单位:kb |