如何在 qt webkit 上启用缓存

发布于 2024-11-13 09:57:50 字数 127 浏览 3 评论 0 原文

我在qt平台上使用webkit,我需要启用缓存功能才能使用使用cache.manifest的html5应用程序。 但是,我正在使用 OfflineWebApplicationCacheEnabled 方法,但这还不够,它不起作用。请帮助我。

I'm using webkit on qt platform, and I need to enable the cache function to use html5 apps that uses cache.manifest.
But, I'm using the OfflineWebApplicationCacheEnabled method, but this is not enough, its not working. Help me please.

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

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

发布评论

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

评论(1

唔猫 2024-11-20 09:57:50

您还需要使用 QWebSettings::setOfflineWebApplicationCachePath 设置路径(确保路径存在,如有必要,请使用 QDesktopServices::storageLocation) 以及通过 QWebSettings::setOfflineWebApplicationCacheQuota

You also need to set the path using QWebSettings::setOfflineWebApplicationCachePath (make sure the path exists, if necessary use some sensible subdirectory from QDesktopServices::storageLocation) and also the cache maximum size via QWebSettings::setOfflineWebApplicationCacheQuota.

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