我正在使用 php 数组测试 getJSON,但它不起作用,任何人都可以帮我检查一下吗?我觉得问题出在 php 代码上,因为当我使用 getJSON url https://graph.facebook.com/zombies测试 html 代码时,它正在工作。
在我的 array.php
<?php
header("Content-type: text/javascript");
$arr = array(
"name" => "Tim",
"age" => "28" );
echo json_encode($arr);
?>
在我的 test.html 中:
<html>
<head>
<script type='text/javascript' src='jquery.js'></script>
</head>
<body>
<script type='text/javascript'>
$(document).ready(function() {
$.getJSON('array.php', function(data) {
if(data) {
document.write(data.age);
}
else {
alert('error');
}
});
});
</script>
</body>
</html>