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
			},
相关推荐
小徐_233311 小时前
uni-app vue3 也能使用 Echarts?Wot Starter 是这样做的!
前端·uni-app·echarts
iOS阿玮15 小时前
永远不要站在用户的对立面,挑战大众的公知。
uni-app·app·apple
xw516 小时前
uni-app中v-if使用”异常”
前端·uni-app
!win !17 小时前
uni-app中v-if使用”异常”
前端·uni-app
2501_9159184119 小时前
iOS 上架全流程指南 iOS 应用发布步骤、App Store 上架流程、uni-app 打包上传 ipa 与审核实战经验分享
android·ios·小程序·uni-app·cocoa·iphone·webview
-Xie-20 小时前
Mysql杂志(十六)——缓存池
数据库·mysql·缓存
七夜zippoe20 小时前
缓存与数据库一致性实战手册:从故障修复到架构演进
数据库·缓存·架构
weixin_4569042720 小时前
跨域(CORS)和缓存中间件(Redis)深度解析
redis·缓存·中间件
00后程序员张21 小时前
iOS App 混淆与加固对比 源码混淆与ipa文件混淆的区别、iOS代码保护与应用安全场景最佳实践
android·安全·ios·小程序·uni-app·iphone·webview
MarkHard1231 天前
如何利用redis使用一个滑动窗口限流
数据库·redis·缓存