使用 json 返回 blob
我正在尝试为我的Android应用程序创建一个休息服务,其中外部数据库返回要存储在应用程序本地数据库中的项目。我已经让一切正常,除了 blob 被返回为 null。
这是我杰森回应的一个例子。(图片和缩略图字段是 blob)
{"id":"2","user_id":"1","name":"testing","type":"bouldering","picture":null,"lat":"36","long":"81","alt":"41932","accuracy":"53","thumbnail":null}
这是我返回数据的php脚本。
<?php
require_once('config.php');
$mysqli = new mysqli(DB_HOST,DB_USER,DB_PASSWORD,DB_NAME);
$sql = 'select * from spot_main';
$results =$mysqli->query($sql);
$spots = array(); //array to parse jason from
while($spot = $results->fetch_assoc()){
$spots[] = $spot;
}
echo json_encode($spots);
?>
有人知道这个问题的解决方案吗?我知道我没有以最有效的方式做到这一点(最好将图像存储在文件系统中),但我需要它来工作。