admin管理员组文章数量:1334678
$(document).ready(function(){ $.ajax({ url: "", type: "GET", success: function(msg){ console.log(msg); } }); });
i get this error "XMLHttpRequest cannot load "
How can i make crossdomain ajax calls to get the xml from the api?
$(document).ready(function(){ $.ajax({ url: "http://gdata.youtube./feeds/api/users/zdf/playlists?v=2", type: "GET", success: function(msg){ console.log(msg); } }); });
i get this error "XMLHttpRequest cannot load http://gdata.youtube./feeds/api/users/zdf/playlists?v=2"
How can i make crossdomain ajax calls to get the xml from the api?
Share Improve this question asked Sep 9, 2010 at 8:10 antpawantpaw 16k11 gold badges63 silver badges94 bronze badges3 Answers
Reset to default 6You cannot make a crossdomain call to to get XML. Your only choice to receive data crossdomain is 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.
Have a look at http://api.jquery./jQuery.getJSON/. JSON-P
is also covered there.
edit
http://code.google./intl/de-DE/apis/youtube/2.0/developers_guide_json.html
Made for you!
There is an ongoing standardization process to work out a scheme to allow cross-domain ajax requests JSON-P is just a temporary workaround since it uses the script tag to make HTTP requests, which is inferior to the XMLHttpRequest object.
The proposed solution is based on letting the resource origin specify which domains that are allowed to make cross-domain requests, the domain "*" means that any other web page can host an application that makes requests to that specific resource.
You can read more in the w3c Working draft
This is supported in modern web-browsers.
try $.load() . see http://api.jquery./load/
本文标签: javascriptCant make a crossdomain Ajax callStack Overflow
版权声明:本文标题:javascript - Cant make a crossdomain Ajax call - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742372295a2462464.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论