如何将数据发送到另一个域中的 Web 服务
我需要使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
另一个域的 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: