如何在Webview Chrome App中清除本地存储和会话存储?

时间:2016-07-28 09:37:09

标签: webview refresh google-chrome-app browser-cache

我正在使用webview(https://developer.chrome.com/apps/tags/webview)开发chrome app。我使用(https://developer.chrome.com/apps/tags/webview#type-ClearDataOptions)清除缓存,但是Webview URL刷新需要5到10分钟。你对此有什么想法吗?

我试过这个:

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

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

0 个答案:

没有答案