我公司开发的MySQL数据库和PHP代码。 在PHP代码我正在使用jQuery(Ajax调用)来从数据库中的数据。 在HTML文件中,我只打印数据表的表头。 其余的数据我想从数据库中获取。 代码给出:
HTML代码:
<div class="container box">
<div class="table-responsive">
<div id="alert_message"></div>
<table id="example" class="display">
<thead>
<tr>
<th>Student ID</th>
<th>Student Name</th>
<th>Email ID</th>
<th>Mobile</th>
<th>Status</th>
</tr>
</thead>
</table>
</div>
</div>
jQuery代码:
<script>
$(document).ready(function() {
$('#example').dataTable({
"processing": true,
"serverSide": true,
"ajax": {
"url": "fetch.php",
"type": "GET",
"datatype": "json"
}
});
});
</script>
fetch.php
<?php
$connect = mysqli_connect("localhost","root","","lib");
$sql = "SELECT StudentId, FullName, EmailId, MobileNumber, Status FROM tblstudents";
$result = mysqli_query($connect,$sql);
$json_array = array();
while ($row = mysqli_fetch_assoc($result))
{
$json_array[] = $row;
}
echo json_encode($json_array);
?>
静止数据未在数据表中打印。 什么样的变化是必要的,jQuery的?
在jQuery的数据表,不仅可以获取来自AJAX调用数据。 您可以管理页面排序,搜索也是如此。
首先你必须修改您的JavaScript这样。
$(document).ready(function() {
$('#example').dataTable({
"bProcessing": true,
"serverSide": true,
"ajax": {
"url": "fetch.php",
"type": "post"
},
error: function () { // error handling code
$("#example").css("display", "none");
}
});
});
然后,你可以在浏览器开发者工具看 - >网络自来水,所有想为搜索,分类和排序的参数将被传递低谷Ajax调用。
您可以通过print_r的看到它($ _ POST)在AJAX页面(在你的情况fetch.php),并查看它在AJAX响应的浏览器开发者工具 - >网络龙头。
您可以收集所有这些如下,
$order_by = $_POST['order']; // This array contains order information of clicked column
$search = $_POST['search']['value']; // This array contains search value information datatable
$start = $_POST['start']; // start limit of data
$length = $_POST['length']; // end limit of data
$order_type = $order_by[0]['dir'];
if ($order_by[0]['column']==0){
$order_column = "table_column_name_of_the_first_column_in_the_datatable";
} elseif ($order_by[0]['column']==1){
$order_column = "table_column_name_of_the_second_column_in_the_datatable";
}
那么你就可以构造查询如下,
if ($search!='' || $search!=NULL) {
$str = "WHERE column_name_to_search LIKE '%$search%' OR column_name_to_search LIKE '%$search%' ";
} else {
$str = "";
}
$data[][] = array();
$i = 0;
$sql = $connection->query("SELECT * FROM your_table $str ORDER BY $order_column $order_type LIMIT $start,$length");
while ($row_1 = $sql->fetch_assoc()){
$data[$i] = array($row_1['column_1'],$row_1['column_2']);
$i++;
}
然后拿到总记录数,你可以做如下,
$sql_2 = $connection->query("SELECT COUNT(*) AS all_count FROM your_table $str");
$row_2 = $sql_2->fetch_assoc();
$totalRecords = $row_2['all_count'];
if ($totalRecords==0){
$data = array();
}
最后构建将被发送到主视图的JSON出来放。
$json_data = array(
"draw" => intval( $_POST['draw'] ),
"recordsTotal" => intval( $totalRecords ),
"recordsFiltered" => intval($totalRecords),
"data" => $data // total data array
);
$json_data = json_encode($json_data);
echo $json_data;
那可行。
我知道这是真的晚了,但我使用了完全相同的代码,你,什么使工作对我来说是简单地添加到jQuery代码(感谢那个的方式!):
DATASRC = ''(后URL = '...')
使数据表才能知道它在加载阵列。 把在使代码做工精细!