我有一个简单的 PHP 代码,它从包括图像的表中检索数据并将其存储在 JSON 对象中。
<?php
$con = mysql_connect("localhost","root","root");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
$selected = mysql_select_db("req2",$con)
or die("Could not select req2");
$table_first = 'locationtab';
$query=mysql_query("SELECT Id,City,Image FROM $table_first");
while ($row=mysql_fetch_assoc($query)) {
$array=$row;
$array['Image']=base64_encode($row['Image']);
$output[]=$array;
}
echo json_encode($output);
mysql_close($con);
?>
这工作得很好,我可以使用 print 查看 JSON 对象。在客户端,我编写了一个 Javascript+Ajax 代码来调用这个 PHP 文件,并在成功时显示 JSON 对象中的数据。我不知道下面的代码中缺少什么,但我似乎根本没有让 AJAX 部分工作。请帮忙
<html>
<head>
<script src="file://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$.ajax({
url:"table.php",
dataType:'json',
type:'POST',
success:function(output) {
alert( output.Id );
}
});
});
</script>
</head>
<body>
<p>test</p>
</body>
</html>