gpt4 book ai didi

javascript - 如何一次获取一页数据

转载 作者:行者123 更新时间:2023-12-01 05:34:01 27 4
gpt4 key购买 nike

我在使用 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
});
});

最佳答案

您需要实现服务器端处理才能从服务器一次检索一页,请参阅 this example .

幸运的是,DataTables 发行版包含 PHP 类 ssp.class.phpsample code这使得它相当容易与 PHP 一起使用。

关于javascript - 如何一次获取一页数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35111253/

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