gpt4 book ai didi

php - Bootstrap 表在大量记录上需要很长时间加载

转载 作者:太空宇宙 更新时间:2023-11-03 11:36:24 24 4
gpt4 key购买 nike

我正在使用 Bootstrap 表以表格格式显示来自 Mysql 数据库的记录。

由于Records有6000多条,加载所有数据需要很长时间。它使我的应用程序非常慢。我们可以在点击页码时加载数据吗?所以最初它应该只需要 20 条记录,而不是一页页码点击它应该需要接下来的 20 条记录。类似的东西?

最佳答案

客户端分页将产生相同的影响,因为数据是在页面加载期间加载的。如果您关心初始加载时间,那么服务器端分页 data-side-pagination="server" 就是您想要的,因为(显然)它减少了服务器的工作量,因为它将请求划分为 block 取决于页面限制。它记录在他们的网站 here

<table id="table"
data-toggle="table"
data-url="/examples/bootstrap_table/data"
data-height="400"
data-side-pagination="server"
data-pagination="true"
data-page-list="[5, 10, 20, 50, 100, 200]"
data-search="true">
<thead>
<tr>
<th data-field="state" data-checkbox="true"></th>
<th data-field="id">ID</th>
<th data-field="name">Item Name</th>
<th data-field="price">Item Price</th>
</tr>
</thead></table>

关于php - Bootstrap 表在大量记录上需要很长时间加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45606756/

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