有什么方法可以进行跨服务器ajax调用吗?

发布于 2024-11-29 05:20:05 字数 941 浏览 0 评论 0原文

我正在学习 XML,并且发现了一个包含 XML 提要的网站。我想知道是否有办法进行跨服务器ajax调用?

我正在使用的代码如下:

<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>

<script>

$.ajax({
    type: "GET",
    url: "http://www.nfl.com/liveupdate/scorestrip/ss.xml",
    dataType: "xml",
    success: function(xml) {
        // Interpret response
        $(xml).find('g').each(function() {

            // Example: Show the XML tag in the console
            console.log(this);

            // Example: Put some output in the DOM
            $("#divOutput").append($(this).attr("hnn"));

        });

        $(xml).find('g').each(function() {



            // Example: Put some output in the DOM
            $("#divOutput").append($(this).attr("k"));

        })        

    }
});
</script>

<div id="divOutput"></div>

</body>
</html>

I am learning XML and I've found a website that has a XML feed. I am trying to figure out if there is a way to make cross server ajax calls?

The code I am using is below:

<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>

<script>

$.ajax({
    type: "GET",
    url: "http://www.nfl.com/liveupdate/scorestrip/ss.xml",
    dataType: "xml",
    success: function(xml) {
        // Interpret response
        $(xml).find('g').each(function() {

            // Example: Show the XML tag in the console
            console.log(this);

            // Example: Put some output in the DOM
            $("#divOutput").append($(this).attr("hnn"));

        });

        $(xml).find('g').each(function() {



            // Example: Put some output in the DOM
            $("#divOutput").append($(this).attr("k"));

        })        

    }
});
</script>

<div id="divOutput"></div>

</body>
</html>

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

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

发布评论

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

评论(1

倚栏听风 2024-12-06 05:20:05

发出跨域 ajax 请求的唯一方法(据我所知)是:

  1. 使用 JSONP
  2. 使用代理
    • 对此的相关替代方案可能是使用 Google Feed API(或类似服务)
  3. 如果服务器支持它(并且您通常需要控制服务器),请使用访问控制标头< /a>

在这种情况下,看起来像你这些都做不到,所以你运气不好。

The only ways for you to make cross domain ajax requests (that I'm aware of) are:

  1. Use JSONP
  2. Use a proxy
    • A related alternative to this might be to use the Google Feed API (or similar service)
  3. If the server supports it (and you'll usually need to control the server), use access control headers

In this case, it looks like you can't do any of these, so you're out of luck.

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