我有一个简单的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>
答案 0 :(得分:0)
output
是带有ids的对象的数组。
您将其视为具有ID的单个对象。
您需要for
循环或获取特定索引。
alert( output[0].Id );