文件系统上的 IE7 和 XML 文件
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以安装 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.