开始

image.png

image.png
image.png
类型是clear
image.png

  1. {
  2. icon: "",
  3. name: "清除缓存",
  4. clicktype: "clear",
  5. url: ""
  6. },

image.png

  1. case "clear":
  2. uni.showModal({
  3. title:'提示',
  4. content:'是否要清除缓存?',
  5. confirmText:'立刻清除',
  6. success: res => {
  7. if(res.confirm){
  8. uni.clearStorage();
  9. uni.showToast({
  10. title:'清除缓存成功!'
  11. })
  12. }
  13. }
  14. })
  15. break;

https://uniapp.dcloud.net.cn/api/storage/storage.html#clearstorage
image.png

结束