Ajax请求失败,仅在Safari中,仅当XML被缓存时

发布于 2024-11-01 04:12:23 字数 594 浏览 4 评论 0原文

我正在尝试编写一个看起来像 iPad 应用程序的 Web 应用程序,具有离线可用性。为此,我指示浏览器使用清单等缓存我的文件。当我尝试 ajax xml 时,它第一次可以工作,但随后会失败。有趣的是,它“失败”了,但是 xhr.responseXML 是正确的!

这只是 Safari 中的问题,无论是在 Windows 还是在 iPad 上。该问题仅在从缓存加载时出现,第一次一切正常。

throwedError 为“”,xhr.status 为 0,xhr.statusText 为“错误”。

$.ajax({
    type: "GET",
    url: "data.xml",
    dataType: "xml",
    success: function(xml) {
        do_stuff(xml);
    },

    error: function (xhr, ajaxOptions, thrownError) {
        do_stuff(xhr.responseXML); // Why does this work?
    }
});

有什么想法吗?我最好的猜测是 xml 加载时使用了错误的 MIME 类型?

I'm trying to write a web app that looks like an iPad application, with offline usability. To do so, I instruct the browser to cache my files using a manifest, etc. When I try to ajax the xml, it works the first time, but fails subsequent times. Funny thing is, it "fails", but xhr.responseXML is correct!

This is only an issue in Safari, whether on Windows or on the iPad. The issue only manifests on loads from cache, everything works fine the first time.

thrownError is "", xhr.status is 0, xhr.statusText is "error".

$.ajax({
    type: "GET",
    url: "data.xml",
    dataType: "xml",
    success: function(xml) {
        do_stuff(xml);
    },

    error: function (xhr, ajaxOptions, thrownError) {
        do_stuff(xhr.responseXML); // Why does this work?
    }
});

Any ideas? My best guess is that the xml is being loaded with the wrong MIME type?

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

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

发布评论

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

评论(1

浅浅淡淡 2024-11-08 04:12:23

当页面最初加载时,data.xml 尚未在缓存中,因此 ajax 调用会直接发送到服务器。由于您已在缓存清单中列出了 xhr 请求的 url,因此您的浏览器将对其发出非 xhr 请求并将其存储在缓存中。页面的后续加载将从缓存中加载并返回非 xhr 请求。

确保您可以作为非 xhr 请求访问 data.xml,并且它包含您想要显示的数据。

When your page initially loads, the data.xml is not in the cache yet, so the ajax call goes directly to the server. Since you have have the url for the xhr request listed in the cache manifest, your browser will make a non-xhr request for it and store it in the cache. Subsequent loads of the page will load from the cache and return the non-xhr request.

Make sure that you can access the data.xml as a non-xhr request, and that it contains the data that you want displayed.

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