我有一个 Phonegap 应用程序,我需要在某些时候删除 html 缓存,因为我已经更新了我的应用程序中的图像。
我试过这个:
[[NSURLCache sharedURLCache] removeAllCachedResponses];
[[NSURLCache sharedURLCache] setDiskCapacity:0];
[[NSURLCache sharedURLCache] setMemoryCapacity:0];
通过javascript在插件中调用,我这样做:
location.reload( true )
但我仍然看到似乎被缓存的相同图像。
还有另一种方法吗?我可以告诉用户退出应用程序并杀死它并在之后重新启动它。
谢谢 !!