我有问题在使用Bootstrap的jQuery DataTables中一次获取按行数。首先,我的代码从数据库中获取整个数据并开始分页。
但我希望一次只为一页加载数据。
我的PHP代码是:
<table id="example1" class="table table-bordered table-striped">
<thead>
<tr>
<th> Name</th>
<th>category</th>
<th>Location</th>
</tr>
</thead>
<tbody>
<?php foreach ($datastat as $row) {
?>
<tr>
<td><?php echo $row['fname'];?> <?php echo $row['mname'];?> <?php echo $row['lname'];?></a></td>
<td><?php echo $row['category'];?></td>
<td><?php echo $row['location'];?></td>
</tr>
<?php }?>
</tbody>
<tfoot>
<tr>
<th> Name</th>
<th>category</th>
<th>Location</th>
</tr>
</tfoot>
</table>
我的javascript代码是:
$(function() {
$('#example1').dataTable({
"bPaginate": true,
"bLengthChange": true,
"bFilter": true,
"bSort": true,
"pageLength": 10
});
});
答案 0 :(得分:0)
您需要实施服务器端处理才能从服务器一次检索一个页面,请参阅this example。
幸运的是,DataTables发行版包括PHP类ssp.class.php
和sample code,这使得它可以很容易地与PHP一起使用。