Javascript 停止使用 HTML5 清单文件

发布于 2024-10-31 18:31:29 字数 356 浏览 5 评论 0原文

因此,我使用 HTML5 清单文件创建了这个 iphone web 应用程序,以便能够离线打开它。问题是,一旦我以全屏模式打开应用程序两次,我加载的 2 个 javascript 文件就会停止工作。让我解释一下:

  • 当您在 ios safari 中以 webapp 模式重新加载它时,
  • 它可以正常工作,第一次打开它时,它可以正常工作,
  • 第二次打开它时,javascript 会加载,但不起作用。 (它拦截点击并执行此操作,只有下一页不会在 2e 时间使用 ajax 加载)

知道这是如何可能的。我必须以某种方式“重置”javascript 文件吗? 我使用 jquery (第一个文件)和我的 js 文件。

So I created this iphone webapp using an HTML5 manifest file to be able to open it offline. The problem is that the 2 javascript files I load stop working as soon as I openthe appin fullscreen mode twice. Let me explain:

  • it works when you reload it in ios safari
  • in webapp mode it works fine the first time you open it
  • the 2e time you open it the javascript loads but does not work. (it intercepts clicks and does that, only the next page doesn't load with ajax the 2e time)

any idea how this is possible. Must i somehow "reset" the javascript file?
I use jquery (first file) and my js file.

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

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

发布评论

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

评论(1

梦一生花开无言 2024-11-07 18:31:29

当您使用ajax加载第二个页面时,该页面的url必须包含在cache.manifest中。

您可能还想将手机设置为通过 Charles http://www.charlesproxy.com/ 这将让您看到站点加载的所有文件。

我们遇到了在 url 末尾使用缓存破坏程序加载文件的问题。由于缓存破坏者更改了 url,因此它们与 cache.manifest 中的内容并不完全匹配。

When you are loading the second page with ajax, the url for that page must be included in the cache.manifest.

You probably also want to setup your phone to go through a proxy like Charles http://www.charlesproxy.com/ This will let you see any files that are loaded by the site.

We ran into issues where files were being loaded with cache-busters at the end of the url. Since the cache-busters changed the url, they didn't exactly match what was in the cache.manifest.

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