51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

uniapp清除缓存

每一幅作品,都是艺术家对自己生命的延伸。------灵遁者

清楚缓存的函数为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 |

文档

赞(0)
未经允许不得转载:工具盒子 » uniapp清除缓存