如何将数据发送到另一个域中的 Web 服务

发布于 2024-12-01 12:43:09 字数 221 浏览 0 评论 0原文

我需要使用 javascript 或 jquery 将数据发送到位于另一个域的 Web 服务。我知道如何使用 Web 服务的 JSONP 和 Http GET 来执行此操作。但这意味着所有数据都必须在 url 中传递。就我而言,数据可能只有几 KB 或更多,因此它并不总是有效。我想我需要使用 HTTP POST 来代替。

谁能给我举个例子来说明如何完成这项工作?我可以使用JQuery post()方法跨域吗?

I need to send data using javascript or jquery to a web service located on another domain. I know how to do this using JSONP and Http GET for the web service. But this means all data must be passed in the url. In my case, the data can be a few KB or more so it does not work all the time. I think i need to use HTTP POST instead.

Can anyone give me an example on how to get this done? Can I use JQuery post() method for cross domain?

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

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

发布评论

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

评论(1

鯉魚旗 2024-12-08 12:43:09

另一个域的 jQuery POST 是不合法的,并且不被允许。

最好的方法是使用 jQuwry 将 POST 数据传递到您自己域上的“桥脚本”,其中该脚本将使用 cURL 透明地发布数据。

cURL 当然可以“伪造”发布/引用域,使其看起来合法。

谷歌一下,我不确定我们是否可以发布这样的答案;)

有用的链接:

jQuery POST for another domain is not legal, and not so-allowed.

The best way would be passing the POST data to a 'bridge-script' on your own domain using jQuwry, where that script will transparently post the data using cURL.

cURL of course can 'forge' the posting/referring domain so that it appears legal.

Google it, I'm not sure if we are allowed to post such answers ;)

Useful Link:

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