gpt4 book ai didi

javascript - php 中的 MySql 查询仅在以 json 编码时返回最后的结果

转载 作者:行者123 更新时间:2023-11-29 04:19:13 25 4
gpt4 key购买 nike

我在 php 中有一个查询(mysql),当编码为 json 时只返回查询的最后一个结果但是我确信查询返回多个结果:

$counter=0;
$reply=array();
$result = mysqli_query($conn,$stringQuery);;
if ($result->num_rows > 0) {
// output data of each row
while($row = mysqli_fetch_assoc($result)) {
$reply["json"]=$row;
$counter++;
}

echo json_encode($reply);
} else {
echo json_encode("0 results");
}
$conn->close();

当我在 javascript 中对结果进行字符串化时,它只返回表的最后一个条目,或单个结果:

$.ajax({
type: 'POST',
url: 'SearchQuery.php',
data: {
'json': cond
},
contentType: "application/x-www-form-urlencoded;charset=UTF-8",
dataType: 'json',
success: function(response) {
alert(JSON.stringify(response["json"]));

}
});

最佳答案

试试这个:

while ($row = mysqli_fetch_assoc($result)) {
$reply[] = $row;
// ^^^^^^^^^^^^^

$counter++;
}
echo json_encode($reply);

关于javascript - php 中的 MySql 查询仅在以 json 编码时返回最后的结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30460217/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com