AJAX 可以从远程服务器请求数据吗?

发布于 2024-09-26 22:53:52 字数 79 浏览 2 评论 0原文

我可以在 JavaScript 中使用 XMLHttpRequests 来请求与发出请求的服务器不同的服务器上的文件吗?

谢谢。

Can I use XMLHttpRequests in JavaScript to request a file on a different server than the one from where the request was made?

Thank you.

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

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

发布评论

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

评论(2

涫野音 2024-10-03 22:53:52

您需要使用名为 JSONP 的方法。

最好的方法之一是使用 jQuery 来减少页面和服务器之间的代码和担忧,而您需要做的就是:

$.ajax({
  dataType: 'jsonp',
  data: 'id=10',
  jsonp: 'jsonp_callback',
  url: 'http://myotherserver.com/getdata',
  success: function () {
    // do stuff
  },
});

You need to use a method that is called as JSONP.

One of the best ways is to use jQuery to reduce the code and worries between your page and the server, and all you need to do is:

$.ajax({
  dataType: 'jsonp',
  data: 'id=10',
  jsonp: 'jsonp_callback',
  url: 'http://myotherserver.com/getdata',
  success: function () {
    // do stuff
  },
});
且行且努力 2024-10-03 22:53:52

仅当远程服务器支持 JSONPHTTP Access-Control 标头。

公共 JSON API(例如 Google.com、Facebook.com 等提供的 API)经常这样做。

Only if the remote server supports JSONP or HTTP Access-Control headers.

Public JSON API's (like the ones provided by Google.com, Facebook.com, etc) often do.

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