XMLHttpRequest 无法加载 http://www.reddit.com/.xml
有谁知道如何修复这个错误?我使用的是jquery 1.6.2
XMLHttpRequest 无法加载 http://www.reddit.com/.xml。原点为空 Access-Control-Allow-Origin 不允许。
$(document).ready(function () {
$.ajax({
type: "GET",
url: "http://www.reddit.com/.xml",
dataType: "xml",
crossDomain: true,
success: xmlParser
});
// ...
});
Does anyone know how to fix this error? I am using jquery 1.6.2
XMLHttpRequest cannot load http://www.reddit.com/.xml. Origin null is
not allowed by Access-Control-Allow-Origin.
$(document).ready(function () {
$.ajax({
type: "GET",
url: "http://www.reddit.com/.xml",
dataType: "xml",
crossDomain: true,
success: xmlParser
});
// ...
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 zrssfeed 它会让你的生活变得更轻松,jsFiddle。
Use zrssfeed it'll make your life a lot easier, jsFiddle.
这是因为
same-origin-policy
创建一个服务器端代理并让该代理查询 Web 服务并返回您的 ajax 请求 xml 响应its because
same-origin-policy
create a server side proxy and have that proxy query the webservice and return your ajax request the xml response