uniapp实现清除缓存

一、页面加载时计算缓存大小(H5不支持)
javascript 复制代码
data() {
    return {
        // 缓存大小展示到页面上
        fileSizeString: '0KB'
    }
}

// 获取缓存大小
			formatSize() {
				let that = this;
				// #ifndef H5
				plus.cache.calculate(function(size) {
					let sizeCache = parseInt(size);
					if (sizeCache == 0) {
						that.fileSizeString = "0B";
					} else if (sizeCache < 1024) {
						that.fileSizeString = sizeCache + "B";
					} else if (sizeCache < 1048576) {
						that.fileSizeString = (sizeCache / 1024).toFixed(2) + "KB";
					} else if (sizeCache < 1073741824) {
						that.fileSizeString = (sizeCache / 1048576).toFixed(2) + "MB";
					} else {
						that.fileSizeString = (sizeCache / 1073741824).toFixed(2) + "GB";
					}
				});
				// #endif
			},
二、点击清除缓存按钮调用清理缓存方法
javascript 复制代码
// 清除缓存按钮
			clearStorage() {
				let that = this
				uni.showModal({
					title: '清除缓存',
					content: '您确定要清除缓存吗?',
					success: function(res) {
						if (res.confirm) {
							that.clearCache()
						}
					}
				});
			},
三、清理缓存(并重新计算缓存大小)
javascript 复制代码
// 清理缓存
			clearCache() {
				let that = this;
				// #ifndef H5
				let os = plus.os.name;
				if (os == 'Android') {
					let main = plus.android.runtimeMainActivity();
					let sdRoot = main.getCacheDir();
					let files = plus.android.invoke(sdRoot, "listFiles");
					let len = files.length;
					for (let i = 0; i < len; i++) {
						let filePath = '' + files[i]; // 没有找到合适的方法获取路径,这样写可以转成文件路径  
						plus.io.resolveLocalFileSystemURL(filePath, function(entry) {
							if (entry.isDirectory) {
								entry.removeRecursively(function(entry) { //递归删除其下的所有文件及子目录  
									uni.showToast({
										icon: 'none',
										title: '缓存清理完成',
										duration: 2000
									});
									that.formatSize(); // 重新计算缓存  
								}, function(e) {
									console.log(e.message)
								});
							} else {
								entry.remove();
							}
						}, function(e) {
							console.log('文件路径读取失败')
						});
					}
				} else { // ios  
					plus.cache.clear(function() {
						uni.showToast({
							icon: 'none',
							title: '缓存清理完成',
							duration: 2000
						});
						that.formatSize();
					});
				}
				// #endif
			},
相关推荐
程序员小刘3 小时前
HarmonyOS 5中UniApp的调试步骤
华为·uni-app·harmonyos
饭啦啦5 小时前
uniapp音乐播放createInnerAudioContext
uni-app
猕员桃7 小时前
《高并发系统性能优化三板斧:缓存 + 异步 + 限流》
缓存·性能优化
米粒宝的爸爸7 小时前
uniapp中vue3 ,uview-plus使用!
前端·vue.js·uni-app
float_六七9 小时前
Redis:极速缓存与数据结构存储揭秘
数据结构·redis·缓存
blammmp9 小时前
Redis : set集合
数据库·redis·缓存
星叔9 小时前
TC3xx中PFLASH缓存对XCP标定常量的影响
缓存·汽车·xcp
LUCIAZZZ11 小时前
项目拓展-Jol分析本地对象or缓存的内存占用
java·开发语言·jvm·数据库·缓存·springboot
哈喽姥爷12 小时前
苍穹外卖--缓存菜品Spring Cache
java·缓存·spring cache·苍穹外卖·黑马
Gazer_S14 小时前
【HTTP重定向与缓存机制详解】
网络协议·http·缓存