清除 PhoneGap 缓存

发布于 2024-12-23 18:16:05 字数 190 浏览 1 评论 0原文

当我将 PhoneGap 应用程序部署到 iPad 时,它没有显示最新版本。我猜这是因为 WebView 正在缓存内容。我不知道如何清除它。

到目前为止我已经..

  • 重新启动
  • 硬重新启动
  • 删除应用程序
  • 清除Safari缓存

还有其他想法吗?

When I deploy my PhoneGap application to my iPad, it doesn't show the most recent version. I'm guessing this is because the WebView is caching stuff. I can't figure out how to clear it.

So far I have..

  • Rebooted
  • Hard Rebooted
  • Removed Application
  • Cleared Safari Cache

Any other ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

抚笙 2024-12-30 18:16:05

您需要在 Xcode 中清理项目,cmd+shift+k。 Xcode 大量缓存 html 文件,在本例中很可能是 index.html 文件。在您的脑海中灌输干净的项目步骤,因为每次部署到设备时都需要执行此操作。

You need to clean the project in Xcode, cmd+shift+k. Xcode caches html files heavily, in this case it's most likely the index.html file. Instill the clean project step in your mind as you need to do it every time you deploy to device.

池予 2024-12-30 18:16:05

我尝试了上面的干净项目建议,但它不起作用。
您需要使用 cordova 从命令行重建应用程序。

cordova build ios

这每次都有效。

I tried the clean project suggestion above and it does not work.
You need to rebuild the app from the command line using cordova.

cordova build ios

This works every time.

Bonjour°[大白 2024-12-30 18:16:05

手机间隙 localStore 可能会使用此文件(在真实设备上)

find / -type f -name '*appdata.db'
find / -type f -name 'file__0'
find / -type f -name 'Databases.db'
find / -type f -name '*localstorage'

Phone gaps localStore may use this files (on real device)

find / -type f -name '*appdata.db'
find / -type f -name 'file__0'
find / -type f -name 'Databases.db'
find / -type f -name '*localstorage'
梦里寻她 2024-12-30 18:16:05

有时我会编辑 html 或 js 文件中的代码。

如果您在代码中通过 Enter Key 添加一行并保存。然后运行它,所有新代码都将在您的应用程序上运行。

xcode 缓存相当重。

Sometimes I would edit the code in my html or js files.

If you add a line by Enter Key in the codes and save it.Then you run it,all the new codes are running on your app.

xcode cache is quite heavy.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文