如何清除webview chrome App中的缓存?

How to clear the cache in webview chrome App?

我正在 chrome 应用程序中使用 webview(https://developer.chrome.com/apps/tags/webview) 在以下场景中开发 chrome 应用程序。

  1. 使用脱机缓存文件显示页面内容。
  2. 应用在线时不应读取缓存文件。
  3. 显示清除缓存的自定义重置方法。

我做了第一种情况,但我无法在用户在线时重置缓存文件,也无法使用自定义方法重置缓存。

我使用了以下文档 https://developer.chrome.com/extensions/browsingData#method-removeCache

请帮我解决缓存问题。

谢谢

试试这个代码,如果它对你有效。

var clearDataType = {
appcache: true,
cache: true, // remove entire cache.
cookies: true,
}

webview.clearData({ since: 0 }, clearDataType, function() {
// Reload webview after clearing browsing data.
});

source

或尝试解决方案 here. And Check this page 以获取更多信息。