gpt4 book ai didi

jquery - 使用 Ajax Json 选择查询 php 给出错误

转载 作者:行者123 更新时间:2023-11-28 23:13:53 25 4
gpt4 key购买 nike

我在错误语句中得到了数据库的完整结果。所以有数据通过低谷,但我不知道为什么它会出错我做错了。现在工作了几个小时,找不到解决方案。希望有人能帮助我

这是我的 select_clienten.php

<?php
//database configuration
$dbHost = 'localhost';
$dbUsername = 'root';
$dbPassword = '********';
$dbName = '********';

//connect with the database
$conn = new mysqli($dbHost,$dbUsername,$dbPassword,$dbName);

$sql = "SELECT * FROM clienten";
$result = mysqli_query($conn, $sql);

if (mysqli_num_rows($result) > 0) {
// output data of each row
while($row = mysqli_fetch_assoc($result)) {
echo "<tr id=".$row["id"]."><td>".$row["roepnaam"]."</td>";
echo "<td>".$row["achternaam"]."</td>";
echo "<td>".$row["email"]."</td>";
echo "<td><span class='glyphicon glyphicon-edit bewerk'></span></td>";
echo "<td><span class='glyphicon glyphicon-trash verwijder'></span></td></tr>";
}

} else {
echo "0 results";
}
echo json_encode($data);
?>

这是我的 index.php。

<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>title</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery- ui.css">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" href="/css/custom.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>

</head>
<body>

<script type="text/javascript">
$(document).ready(function() {
var data;
$.ajax(
{type: 'get',
url: './select_clienten.php',
data: "",
dataType: 'json',
success:function(data)//we got the response of ajax :)
{
$("#test").html(data);
},
error:function(data)
{
//no respons show error.
alert ("error!");
alert(JSON.stringify(data)) //we give an alert of the error when there is no respons from ajax
;}
}); //end of ajax function.

});
</script>
<div id="test">
<!-- show data json here -->
</div>
</body>
</html>

最佳答案

我认为问题在于您在 ajax 函数中设置了 dataType: 'json' 但响应是这样的 html:

echo "<tr id=".$row["id"]."><td>".$row["roepnaam"]."</td>"

你应该将所有的 html 保存在字符串中

$data = "";
$data .= "<tr id=".$row["id"]."><td>".$row["roepnaam"]."</td>";
$data .= "<td>".$row["achternaam"]."</td>";
....

并发送json响应

echo json_encode(['data'=>$data]);

或删除dataType: 'json' 并发送html

echo $data

关于jquery - 使用 Ajax Json 选择查询 php 给出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44740771/

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