gpt4 book ai didi

javascript - 有没有办法只使用 JavaScript 从另一个域加载 XML 文件?

转载 作者:数据小太阳 更新时间:2023-10-29 01:58:39 26 4
gpt4 key购买 nike

jQuery 有 $.getJSON() 函数,我用它从其他域加载 json 文件,如下所示:

$.getJSON('http://somesite.com/file.js', function(output) {
// do stuff with the json data
});

我想知道我是否可以对来自其他域的 xml 文件做同样的事情,还是我必须为此使用服务器端语言?

这是我要加载的 xml 文档:

http://google.com/complete/search?output=toolbar&q=microsoft

最佳答案

我同意@viyancs的说法,简单来说如果你想获取其他域的xml,有跨域限制,解决办法是创建一个代理,所以请求过程是:

1. use $.ajax to request your proxy(with the real xml url you want to access).

2. your proxy retrive the xml url content.

3. your proxy returns the content to your $.ajax call.

有关更多详细信息,请查看:http://developer.yahoo.com/javascript/howto-proxy.html

顺便说一句:为什么您不必为 JSON 执行此操作?这是一种称为 JSONP 的技术.

关于javascript - 有没有办法只使用 JavaScript 从另一个域加载 XML 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8074295/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com