HarmonyOS Web如何实现清除缓存

在h5页面中有个按钮,点击调用然后清除缓存。

HarmonyOS
2024-09-06 09:24:37
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
Heiang
import web_webview from '@ohos.web.webview'; 
import emitter from '@ohos.events.emitter'; 
 
class Clear { 
  constructor() { 
  } 
 
  clearCache() { 
    console.log("clear") 
    emitter.emit("clear"); 
  } 
} 
 
 
@Entry 
@Component 
struct WebImg { 
  webviewController: web_webview.WebviewController = new web_webview.WebviewController(); 
  clear = new Clear() 
 
  aboutToAppear(): void { 
    emitter.on("clear", () => { 
      this.clearCacheWithRomAndRam() 
    }); 
  } 
 
  clearCacheWithRomAndRam() { 
    this.webviewController.removeCache(true) 
    this.webviewController.zoomIn() 
  } 
 
  build() { 
    Column() { 
      // web组件加载本地index.html页面 
      Web({ src:$rawfile('index.html'), controller: this.webviewController })// 将对象注入到web端 
        .javaScriptProxy({ 
          object: this.clear, 
          name: "Clear", 
          methodList: ["clearCache"], 
          controller: this.webviewController 
        }) 
    } 
  } 
}
分享
微博
QQ
微信
回复
2024-09-06 16:44:09
相关问题
HarmonyOS 清除Web缓存
526浏览 • 0回复 待解决
HarmonyOS web清除缓存问题
23浏览 • 1回复 待解决
HarmonyOS怎么清除当前应用的缓存
545浏览 • 1回复 待解决
如何通过命令号清除应用缓存
1944浏览 • 1回复 待解决
HarmonyOS APP有没有清除缓存的接口
295浏览 • 1回复 待解决
如何清除Web隐私模式下所有cookie。
309浏览 • 1回复 待解决
HarmonyOS sdk如何清除cookie?
30浏览 • 1回复 待解决
HarmonyOS 路径规划如何清除路线
286浏览 • 1回复 待解决
Web组件的缓存模式有几种?
259浏览 • 1回复 待解决
关于 web 项目配置文件是否使用缓存
4078浏览 • 1回复 待解决
Redis缓存分布式锁是如何实现的?
2992浏览 • 1回复 待解决