我尝试使用 jquery 发出跨域请求。这就是客户端的样子,
<script src="js/jquery-1.6.2.min.js"></script>
<script type="text/javascript">
$(document).ready( function(){
$.ajax({
type: 'GET',
url: "http://www.xserver.com/xdomainhandler.php",
processData: true,
data: {
type:"gotohell"
},
dataType: "json",
success: function (data) {
myglob=data;
var repo=JSON.parse(myglob);
alert(repo.type);
},
error : function(XMLHttpRequest, textStatus, errorThrown){
alert('ends up in error state');
}
});
});
</script>
接收此请求的服务器页面代码将如下所示:
<?php
header('Access-Control-Allow-Origin: *');
header('Expires: ' . gmdate('r', 0));
header('Content-type: application/json');
session_cache_limiter('nocache');
$arr = array ('response'=>'success','comment'=>'test comment here','type'=>$_GET['type']);
echo json_encode($arr);
?>
但是当我完成请求/响应过程时,我在“repo”变量中什么也没有。我使用萤火虫检查了响应,它显示了类似的响应,
{"response":"success","comment":"test comment here","type":"gotohell"}
我还在它显示的萤火虫的 DOM 面板中 检查了myglob变量,
Object { response="success", comment="test comment here", type="gotohell"}
但是当我将 myglob 解析为 repo 时,它什么也没显示……我哪里出错了。有人可以帮助我吗?谢谢!