AJAX跨域调用

编程入门 行业动态 更新时间:2024-10-11 07:26:06
本文介绍了AJAX跨域调用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我知道AJAX跨域策略。 所以,我不能只叫 www.google 通过AJAX HTTP请求和显示器 结果地方上我的网站。

I know about AJAX cross-domain policy. So I can't just call "www.google" over a ajax HTTP request and display the results somewhere on my site.

我试了一下由于数据类型JSONP,这实际上是将工作,但我得到一个语法错误(显然是因为接收到的数据是不是JSON格式化)

I tried it with dataType "jsonp", that actually would work, but I get a syntax error (obviously because the received data is not JSON formated)

有没有其他的方法可行,从外部域接收/显示数据? iFrame中遵循同样的政策?

Is there any other possiblity to receive/display data from a foreign domain? iFrames follow the same policy?

推荐答案

唯一的(简单)的方式使用AJAX是使用服务器端语言作为代理为的Andyê指出。下面是一个小样本如何实现使用jQuery:

The only (easy) way to get cross-domain data using AJAX is to use a server side language as the proxy as Andy E noted. Here's a small sample how to implement that using jQuery:

jQuery的一部分:

The jQuery part:

$.ajax({ url: 'proxy.php', type: 'POST', data: { address: 'www.google' }, success: function(response) { // response now contains full HTML of google } });

和PHP的(proxy.php):

And the PHP (proxy.php):

echo file_get_contents($_POST['address']);

就这么简单。要知道,你可以或不能与刮下的数据做什么。

Simple as that. Just be aware of what you can or cannot do with the scraped data.

更多推荐

AJAX跨域调用

本文发布于:2023-11-28 12:44:29,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1642449.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:AJAX

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!