无法进行跨域 Ajax 调用
问题描述
$(document).ready(function(){$.ajax({网址:http://gdata.youtube.com/feeds/api/users/zdf/playlists?v=2",类型:获取",成功:功能(味精){控制台日志(味精);}});});
$(document).ready(function(){ $.ajax({ url: "http://gdata.youtube.com/feeds/api/users/zdf/playlists?v=2", type: "GET", success: function(msg){ console.log(msg); } }); });
我收到此错误XMLHttpRequest 无法加载 http://gdata.youtube.com/feeds/api/users/zdf/playlists?v=2"
i get this error "XMLHttpRequest cannot load http://gdata.youtube.com/feeds/api/users/zdf/playlists?v=2"
如何进行跨域 ajax 调用以从 api 获取 xml?
How can i make crossdomain ajax calls to get the xml from the api?
推荐答案
您不能通过跨域调用来获取 XML.接收跨域数据的唯一选择是JSON-P.
You cannot make a crossdomain call to to get XML. Your only choice to receive data crossdomain is JSON-P.
同源策略限制直接访问外域(ajax/iframes),json-p使用动态脚本标签插入解决此问题.
The same origin policy restricts direct access to a foreign domain (ajax/iframes), json-p uses dynamic script tag insertion to workaround this issue.
看看 http://api.jquery.com/jQuery.getJSON/.JSON-P 也包含在其中.
Have a look at http://api.jquery.com/jQuery.getJSON/. JSON-P is also covered there.
编辑
http://code.google.com/intl/de-DE/apis/youtube/2.0/developers_guide_json.html
为你量身定做!
这篇关于无法进行跨域 Ajax 调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
