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缓存
58浏览 • 1回复 待解决
HarmonyOS 清除Web缓存
769浏览 • 0回复 待解决
HarmonyOS web清除缓存问题
229浏览 • 1回复 待解决
HarmonyOS如何清除应用缓存
148浏览 • 0回复 待解决
flutter缓存如何清除
246浏览 • 1回复 待解决
HarmonyOS 清除缓存功能
296浏览 • 1回复 待解决
HarmonyOS 是否有方法可以清除缓存
44浏览 • 1回复 待解决
如何通过命令号清除应用缓存
2190浏览 • 1回复 待解决
HarmonyOS怎么清除当前应用的缓存
906浏览 • 1回复 待解决
HarmonyOS 如何清理 web 缓存
68浏览 • 1回复 待解决
HarmonyOS APP有没有清除缓存的接口
462浏览 • 1回复 待解决
如何清除Web隐私模式下所有cookie。
524浏览 • 1回复 待解决
Web组件的缓存模式有几种?
415浏览 • 1回复 待解决
HarmonyOS sdk如何清除cookie?
188浏览 • 1回复 待解决