gpt4 book ai didi

jquery - 使用 jQuery 数据表插件的服务器端分页

转载 作者:行者123 更新时间:2023-12-01 02:54:11 24 4
gpt4 key购买 nike

如何使用数据表实现服务器端分页?目前,在加载页面时,我正在初始化数据表并通过 Java Spring Controller 使用来自数据库的数据 (JSON) 填充该表。我通过在查询字符串中传递搜索条件来进行 Ajax 调用。由于我们有数十万条记录,因此我们计划使用服务器端分页来提高性能。

为此,后端服务开发人员为我提供了一项服务,该服务为我提供每页记录,但接受诸如页码、页记录数、排序顺序、排序列之类的输入。

我必须重写数据表实现,以通过 Ajax 请求查询字符串将它们传递给服务。我不知道是否有办法实现这一目标。

最佳答案

How can I achieve server side pagination using data table?

有关更多信息,请查看documentation

$(document).ready(function() {
$('#example').dataTable( {
"processing": true,
"serverSide": true,
"ajax": "../server_side/scripts/server_processing.php"
} );
} );

我建议您查看docs再次。

When making a request to the server using server-side processing, DataTables will send the following data in order to let the server know what data is required I would not copy all the parameters but only few of them here:

start, length, order[i][column]

我想这些就是你要找的人。

请记住:

Once DataTables has made a request for data, with the above parameters sent to the server, it expects JSON data to be returned to it, with the following parameters set:

并且您想亲自查看这些属性,以免这篇文章太长。

关于jquery - 使用 jQuery 数据表插件的服务器端分页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30908906/

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