文件系统上的 IE7 和 XML 文件

发布于 2024-07-26 09:43:34 字数 170 浏览 6 评论 0原文

我正在使用 jQuery 通过 Ajax 加载 XML 文件。

对于我的测试,我使用文件系统上的一个文件。 在其他浏览器中似乎一切都很好,但 IE 获取的响应标头没有内容类型标头。 所以我得到一个解析器错误。 (XML 是有效的,我检查了它(两次)。)

我怎样才能绕过这个问题?

I'm loading a XML file via Ajax using jQuery.

For my tests, I use a file on my file system. It seems all is fine in other browsers but the response headers got by IE has no content-type header. So I get a parsererror. (The XML is valid, I checked it (twice).)

How can I bypass this problem ?

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

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

发布评论

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

评论(1

二智少女 2024-08-02 09:43:34

您可以安装 Web 服务器(IIS、Apache 等)并将其配置为从相关目录提供文件。 例如, http://localhost/myfile.xml

或者,您可以使用responseText 属性并手动解析它

You can install a web server (IIS, Apache, etc.) and configure it to serve files from the relevant directory. E.g., http://localhost/myfile.xml .

Alternately, you can use the responseText property and parse it manually.

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