使用 YQL 进行跨域请求

发布于 2024-10-03 16:17:18 字数 293 浏览 3 评论 0原文

我正在尝试通过 javascript 使用 Musicbrainz API。我发现我们现在可以使用 YQL 轻松地执行 crossmain。

我已经完成了一个 jsfiddle 文件,这样做: http://jsfiddle.net/HBCDF/1/

我遇到的这个代码片段的问题是,当 http 响应是 XML 时,它不起作用。 有谁知道如何更改代码片段并能够获取 XML 结果吗?

格雷格

I am trying use the Musicbrainz API through javascript. I found that we can now perform crossmain easily with YQL.

And I've done a jsfiddle file that does so: http://jsfiddle.net/HBCDF/1/

The problem I have with this snippet is that is doesn't work when the http response is XML.
Does anyone has an idea how I could change the snippet and be able to get the XML result?

Greg

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

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

发布评论

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

评论(2

秋千易 2024-10-10 16:17:18

跨域请求必须使用jsonp来完成,因为普通的ajax请求不支持跨域调用。不同之处在于 jsonp 并没有生成真正的 XmlHttpRequest,而是将其添加到您的页面中:

<script type="text/javascript" src="TheCrossDomainUrl"></script>

如果您尝试以这种方式拉取 XML,它将失败,因为它不是有效的 javascript。我相信有一些方法可以在不发出 XmlHttpRequest 的情况下提取 XML(请参阅: http://ajaxian.com/archives/xml-messages-with-cross-domain-json)。

另一种选择是添加一个服务器端页面来为您代理请求。您当前的页面将向同一域中的另一个页面发出正常的 XmlHttpRequest,该页面将调用 Musicbrainz,Musicbrainz 响应您的服务器端页面,该服务器端页面响应客户端脚本。

Cross domain requests must be done using jsonp as normal ajax requests don't support cross domain calls. The difference is that jsonp isn't making a true XmlHttpRequest instead it's adding this to your page:

<script type="text/javascript" src="TheCrossDomainUrl"></script>

If you're trying to pull XML down this way, it will fail since it's not valid javascript. I believe there are some ways to pull down the XML without making an XmlHttpRequest (see: http://ajaxian.com/archives/xml-messages-with-cross-domain-json).

Another option would be to add a server side page that brokers the request for you. Your current page would make a normal XmlHttpRequest to another page in your same domain, that page would make the call to Musicbrainz, Musicbrainz responds to your server side page which responds to the client side script.

绮筵 2024-10-10 16:17:18

将 format=json 添加到 YQL url

var yql = 'http://query.yahooapis.com/v1/public/yql?q=' + encodeURIComponent('select * from html where url="' + site + '"') + '&format=json&callback=?';

并使用 if ( data.query.results != null ) 检查

http://jsfiddle.net/HBCDF/3/

Add the format=json to the YQL url

var yql = 'http://query.yahooapis.com/v1/public/yql?q=' + encodeURIComponent('select * from html where url="' + site + '"') + '&format=json&callback=?';

And use the if ( data.query.results != null ) check

http://jsfiddle.net/HBCDF/3/

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