Cant make a crossdomain Ajax call(无法进行跨域 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 调用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:无法进行跨域 Ajax 调用
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Fetch API 如何获取响应体? 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- 400或500级别的HTTP响应 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01