How do I manually clear cache for webview in Chrome app?

前端 未结 1 1181
生来不讨喜
生来不讨喜 2021-01-22 07:35

I am developing a Chrome app that shows some web content in a webview tag. The content is being cached. When I edit the content files, clearing Chrome browsers\' cache does not

1条回答
  •  甜味超标
    2021-01-22 08:35

    This has since been implemented and is available in Chrome 43+

    webviewElement.clearData({}, {cache: true}, function() {
      // Cache cleared
    });
    

    0 讨论(0)
提交回复
热议问题