我有一个 php 代码,它从数据库中检索图像并通过使用 base64 对其进行编码将其存储在 json 中。
$query=mysql_query("SELECT Id,Image FROM $table_first");
while ($row=mysql_fetch_assoc($query)) {
$array=$row;
$array['Image']=base64_encode($row['Image']);
$output[]=$array;
}
echo json_encode($output);
现在我有一个 html 文件,我必须在其中解码此图像并将其显示在 div 元素中。我不知道如何解码图像。
$(document).ready(function(){
$.ajax({
url:"loc.php",
dataType:'json',
type:'POST',
success:function(output) {
}
});
});
</script>
</head>
<body>
<p> Test page </p>
<div class="Ch" id="Ch"></div>
在这里,我需要在 id 为“ch”的 div 中显示 ouptut[0].Image(采用 base64 格式)