嘿我不经常使用PHP,也许每年一次,我在正确返回数据时遇到了很多麻烦。基本上我得到一个似乎在响应文本中包含我的数据的对象,我不知道为什么。如果有人能向我解释为什么会发生这种情况,我将非常感激!
这是后端的代码
if(isset($_POST['action']) && !empty($_POST['action'])) {
switch ($_POST['action']){
case'getCandidates' :
{
$bus = array(
'latitude' => $row['lat'],
'longitude' => $row['lng'],
'icon' => './images/' . $row['busColor'] . '.png'
);
array_push($json, $bus);
$query = "SELECT * from candidates WHERE status = '$status' AND category = '$category' AND location = '$location'";
$returnRows = $db->con->query($query);
if ($returnRows->num_rows > 0) {
$x = 0;
// output data of each row
while($row = $returnRows->fetch_assoc()) {
$object = new stdClass();
$object->status = $row["status"];
$object->first_name = $row["first_name"];
$object->last_name = $row["last_name"];
$object->category = $row["category"];
array_push($aResult, $object);
}
} else {
$aResult[0] = "No results";
}
// $aResult['result'] = mysql_fetch_object($returnRows);;
}
这是前端代码
returnedCandidates = $.ajax({
url: "../php/admin.php",
type: 'POST',
dataType: 'json',
data: {action: 'getCandidates'},
success: function(data, textStatus, jqXHR) {
alert(data);
}});
console.log(JSON.parse(returnedCandidates[0]));
这是用php返回数据的行。我忘了添加它。
print_r(json_encode($ aResult));
答案 0 :(得分:0)
评论专栏:
//print_r(json_encode ($aResult));
并像这样返回:
return (json_encode ($aResult));
答案 1 :(得分:0)
不要使用print_r作为回报。
试试这段代码:
header('Content-Type: application/json');
echo json_encode($aResult);