如何在 jQuery 中使用 Ajax 请求不同的域

发布于 2024-09-29 01:24:47 字数 510 浏览 6 评论 0原文

我需要在 jQuery 中使用 Ajax 向不同的域发出请求!

我应该使用iframe吗?

编辑:

在 facebook.com 工作聊天中,有几个不同的域名?

获取http://www.facebook.com/ajax/presence/reconnect.php?__a=1&reason=6&iframe_loaded=false&post_form_id=23be2df75b74a0bcb61358814c56ba4f 200 OK

GET http://0.50.channel.facebook.com/x/2562941315/4271808869/true/p_1529934952=2 200好吧,

我想要类似的东西...

I need to make a request to a different domain with Ajax in jQuery!

Should I use iframe?

Edited:

On facebook.com working chat, with few different domain name?

GET http:// www.facebook.com/ajax/presence/reconnect.php?__a=1&reason=6&iframe_loaded=false&post_form_id=23be2df75b74a0bcb61358814c56ba4f 200 OK

GET http://0.50.channel.facebook.com/x/2562941315/4271808869/true/p_1529934952=2 200 OK

I want something like...

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

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

发布评论

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

评论(3

千鲤 2024-10-06 01:24:47

由于同源政策,您不能这样做。

你有几个选择。

JSONP

您使用 script 元素发出请求,并传递它是对处理数据的函数之一的回调。

服务器端代理

基本上,您在服务器端创建一个包装器。您可以使用 cURL 或等效工具。向您的服务器请求数据,然后在同一域下提供数据。

You can not because of same origin policy.

You have a few options.

JSONP

You make a request with a script element, and pass it a callback to one of your functions to handle the data.

Server side proxy

Basically, you create a wrapper on the server side. You can use cURL or equivalent. Request the data with your server and then serve it from under the same domain.

再浓的妆也掩不了殇 2024-10-06 01:24:47

你不能。考虑使用 JSONP 代替,它使用

You can't. Consider using JSONP instead, which uses <script> tags to retrieve data.

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