项目开辟中关于 uniapp实现 Android和IOS获取App缓存,清除缓存功能 ...

王柳  金牌会员 | 2024-11-29 01:29:20 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 761|帖子 761|积分 2283

新建按钮
  1. <u-button shape="circle" plain type="info" @click="clearStorage"><text style="color: #000;font-size: 32rpx;">当前缓存: {{fileSizeString}}, 点击清除缓存</text></u-button>
复制代码
获取本机缓存
  1. // 获取缓存
  2. formatSize() {
  3.         plus.cache.calculate((size) => {
  4.                 let sizeCache = parseInt(size);
  5.                 if (sizeCache == 0) {
  6.                         this.fileSizeString = "0B";
  7.                 } else if (sizeCache < 1024) {
  8.                         this.fileSizeString = sizeCache + "B";
  9.                 } else if (sizeCache < 1048576) {
  10.                         this.fileSizeString = (sizeCache / 1024).toFixed(2) + "KB";
  11.                 } else if (sizeCache < 1073741824) {
  12.                         this.fileSizeString = (sizeCache / 1048576).toFixed(2) + "MB";
  13.                 } else {
  14.                         this.fileSizeString = (sizeCache / 1073741824).toFixed(2) + "GB";
  15.                 }
  16.         });
  17. },
复制代码
清除缓存
  1. // 清除缓存确认
  2. clearStorage() {
  3.         uni.showModal({
  4.                 title: '清除缓存',
  5.                 content: '您确定要清除缓存吗?',
  6.                 success: (res) => {
  7.                         if (res.confirm) {
  8.                                 console.log('用户点击确定');
  9.                                 this.clearCache();
  10.                         } else if (res.cancel) {
  11.                                 console.log('用户点击取消');
  12.                         }
  13.                 }
  14.         });
  15. },
  16. // 清除缓存
  17. clearCache() {
  18.         let os = plus.os.name;
  19.         if (os == 'Android') {
  20.                 let main = plus.android.runtimeMainActivity();
  21.                 let sdRoot = main.getCacheDir();
  22.                 let files = plus.android.invoke(sdRoot, "listFiles");
  23.                 let len = files.length;
  24.                 for (let i = 0; i < len; i++) {
  25.                         let filePath = '' + files[i];
  26.                         plus.io.resolveLocalFileSystemURL(filePath, (entry) => {
  27.                                 if (entry.isDirectory) {
  28.                                         entry.removeRecursively((entry)  => {
  29.                                                 uni.showToast({
  30.                                                         title: '缓存清理完成',
  31.                                                         duration: 2000
  32.                                                 });
  33.                                                 this.formatSize();  
  34.                                            }, (e) => {
  35.                                             console.log(e.message)
  36.                                     });
  37.                             } else {
  38.                                         entry.remove();
  39.                                 }
  40.                         }, (e) => {
  41.                                 console.log('文件路径读取失败')
  42.                         });
  43.                 }
  44.         } else { // ios  
  45.                 plus.cache.clear(() =>{
  46.                         uni.showToast({
  47.                                 title: '缓存清理完成',
  48.                                 duration: 2000
  49.                         });
  50.                         this.formatSize();
  51.                 });
  52.         }
  53. }
复制代码


免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

正序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

王柳

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表