如何在页面加载时从表中加载一定数量的行,并仅在用户加载时加载更多行? [英] How can i load a set number of rows from a table on pageload and only load further rows when the user loads them?

查看:20
本文介绍了如何在页面加载时从表中加载一定数量的行,并仅在用户加载时加载更多行?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个使用 DataTables 的表格,它包含大量行,因此这会导致页面加载非常缓慢,因为我假设浏览器在显示页面之前等待表格填满.

我只想加载表格的一页(10行),并且只在用户浏览表格时显示更多数据,显示加载标志也很棒.

我研究并听说过一个名为deferRender"的 DataTables 函数,它应该可以满足我的需要,但我无法让它与我的表格一起使用.

我的表有 8 列 + html 是使用 PHP 从文本文件中的数据构建表生成的:

<头>第 1 个第 2 个第 3 个第 4 个第 5 个第 6 个第 7 个第 8 个</thead>";$f = fopen("tabledata.txt", "r");如果( $f === FALSE ){出口;}而 (!feof($f)) {$arrM = expand(",",fgets($f));$row = 当前( $arrM );如果 ($tdcount == 1)$str .= "";$str .= "<td>$row </td>";如果($tdcount == $numtd){$str .= "</tr>";$tdcount = 1;} 别的 {$tdcount++;}}如果($tdcount!= 1){而 ($tdcount <= $numtd) {$str .= "<td>&nbsp;</td>";$tdcount++;} $str .= "</tr>";}$str .= "</tbody></table>";回声 $str;

然后我使用以下代码将其转换为数据表:

我已阅读此处的说明:

(我刚刚注意到屏幕截图提到了500 条记录"——这是我的服务器端代码中的一个错误——没有过滤器,所以我需要修复它).

后续请求

当用户单击页面导航按钮(例如页面4")时,会触发从 DataTables 到服务器的新请求.DataTables 使用此处描述的字段自动构建此请求.

请求作为表单数据发送.

在我们的示例中,请求如下所示:

表单数据":{"画": "5",列[0][数据]":id",列[0][名称]":","columns[0][searchable]": "true","columns[0][orderable]": "true",列[0][搜索][值]":",列[0][搜索][正则表达式]":假",列[1][数据]":名称",列[1][名称]":","columns[1][searchable]": "true","columns[1][orderable]": "true",列[1][搜索][值]":",列[1][搜索][正则表达式]":假",列[2][数据]":说明",列[2][名称]":","columns[2][searchable]": "true","columns[2][orderable]": "true",列[2][搜索][值]":",列[2][搜索][正则表达式]":假",订单[0][列]":1","order[0][dir]": "asc","开始": "30","长度": "10",搜索[值]":",搜索[正则表达式]":假"}

这些字段告诉服务器它需要知道的一切,以便它可以准备正确的响应.

在我们的例子中,最重要的字段是这些:

"start": "30",长度":10"

从第 30 行开始,提供 10 条记录.

再次说明,服务器有责任准备准确反映所请求数据的 JSON 响应.

在我们的例子中,这意味着服务器需要有逻辑来读取文本文件到正确的起点(数据第 31 行 - 记住偏移量从零开始),总共 10 行(第 31 到 40 行).

来自 DataTables 的上述请求中的其他字段描述了如何对数据进行排序和过滤.在我们的例子中没有过滤器 "search[value]": "", - 数据将按第一列升序排序.

最后的笔记

我故意不描述以下内容:

1) 您的服务器端代码如何处理它发送回 DataTables 的 JSON 响应的创建;

2) 您的服务器端代码如何解析它从 DataTables 接收到的表单请求.

这完全取决于您的服务器端技术是什么.数据表不在乎.它只是传递 JSON 消息 - 它应该与服务器端实现分离.

关于此处所述的延迟渲染"选项,这是您可以选择的增强功能如果您觉得需要,可以添加.但我建议先让更基本的服务器端实现工作.

I have a table using DataTables , it contains a large number of rows and so this causes the page to load very slowly as i assume the browser waits till the table is filled before displaying the page.

I would like to only load one page of the table (10 rows), and only show further data when the user browses through the table, showing a loading sign would be great too.

I have researched and heard of a DataTables function called 'deferRender' which is supposed to do what i need, but i can't get it to work with my table.

My table has 8 columns + the html is generated using PHP that builds the table from data in a text file:

<?php


     $tdcount = 1; $numtd = 8; // number of cells per row
     $str = "<table id="table1" class="table1 table table-striped table-bordered">
                                     <thead>
                                     <th>1</th>
                                     <th>2</th>
                                     <th>3</th>
                                     <th>4</th>
                                     <th>5</th>
                                     <th>6</th>
                                     <th>7</th>
                                     <th>8</th>
                 </thead>
                                     <tbody>

 ";
     $f = fopen("tabledata.txt", "r");
     if ( $f === FALSE ) {
 exit;
    }
     while (!feof($f)) {
         $arrM = explode(",",fgets($f));
         $row = current ( $arrM );
         if ($tdcount == 1)
             $str .= "<tr>"; $str .= "<td>$row </td>";
         if ($tdcount == $numtd) {
             $str .= "</tr>";
             $tdcount = 1;
         } else {
             $tdcount++;
         }
     }
     if ($tdcount!= 1) {
         while ($tdcount <= $numtd) {
             $str .= "<td>&nbsp;</td>"; $tdcount++;
         } $str .= "</tr>";
     }
     $str .= "</tbody></table>";
     echo $str;

I then use the following code to turn it into a datatable:

<script>
        $(document).ready(function() {
        $('#table1').basictable({
          forceResponsive: false
          });
        $('#table1').DataTable( { "order": [[ 0, "desc" ]] } );

          });

</script>

I have read the instructions here: https://datatables.net/examples/server_side/defer_loading.html and know i need to add parameters to the JS:

"processing": true,
"serverSide": true,
"ajax": "scripts/server_processing.php",
"deferLoading": 57

and use a server_processing script, however the example only shows how to use it when connecting to a DB, and not when the data is loaded from a text file with php.

How can i acheive this?

解决方案

This will focus purely on the DataTables aspects of a "server-side" solution. How you write the server-side logic needed to support it is out of scope for this answer. But I hope these notes will at leasst clarify what that logic needs to be, and how you can approach it.

Assumptions

Assume you have a text file containing 1,000 rows of data like this (or a million - but too many rows to send to the browser and to DataTables, all at once). The text file is a simple pipe-delimited file, with three fields:

id|name|description
1|widget_1|This is a description for widget 1
2|widget_2|This is a description for widget 2
3|widget_3|This is a description for widget 3
...
1000|widget_1000|This is a description for widget 1000

You want to send 10 items at a time to DataTables, using server-side processing.

Your data maps to a simple JSON structure, like this - an array of objects (each object is one record):

[
    {
        "id": 1,
        "name": "widget_1",
        "description": "This is a description for widget 1"
    },
    {
        "id": 2,
        "name": "widget_2",
        "description": "This is a description for widget 2"
    },
    ... // more records...
]

The DataTable Definition

Your datatable definition looks like this - it is deliberately very simple, at this stage:

<body>

<div style="margin: 20px;">

<table id="demo" class="display dataTable cell-border" style="width:100%">
</table>

</div>

<script type="text/javascript">

  $(document).ready(function() {
    $('#demo').DataTable({
      serverSide: true,
      ajax: {
        url: 'http://localhost:7000/data',
        type: 'POST'
      },
      columns: [
        { title: 'ID',
          data: 'id' },
        { title: 'Name',
          data: 'name' },
        { title: 'Description',
          data: 'description' }
      ]
    });

  });
</script>

</body>

Initial Response

When the web page is first displayed, it will send an initial POST request to the URL (http://localhost:7000/data), and it will expect to receive a JSON response from the web server, containing the data to be displayed.

Because DataTables is using serverSide: true, DataTables will expect the JSON to have a specific structure, as described here.

Specifically, the server has to add all of the mandatory fields (draw, recordsTotal, recordsFiltered, and data) to the JSON it sends to DataTables.

In our case it would look like this - note that it is just our previously mentioned JSON structure, with a few extra metadata fields added:

{
    "draw": 1,
    "recordsTotal": 1000,
    "recordsFiltered": 1000,
    "data": [{
        "id": 1,
        "name": "widget_1",
        "description": "This is a description for widget 1"
    }, {
        "id": 2,
        "name": "widget_2",
        "description": "This is a description for widget 2"
    }, {
        "id": 3,
        "name": "widget_3",
        "description": "This is a description for widget 3"
    }, {
        "id": 4,
        "name": "widget_4",
        "description": "This is a description for widget 4"
    }, {
        "id": 5,
        "name": "widget_5",
        "description": "This is a description for widget 5"
    }, {
        "id": 6,
        "name": "widget_6",
        "description": "This is a description for widget 6"
    }, {
        "id": 7,
        "name": "widget_7",
        "description": "This is a description for widget 7"
    }, {
        "id": 8,
        "name": "widget_8",
        "description": "This is a description for widget 8"
    }, {
        "id": 9,
        "name": "widget_9",
        "description": "This is a description for widget 9"
    }, {
        "id": 10,
        "name": "widget_10",
        "description": "This is a description for widget 10"
    }]
}

It is the server's responsibility to build this JSON - the first 10 records of the server's data set. The server also tells DataTables that it has a total of 1,000 records, and that it has not filtered out any data (yet) - hence there are also a total of 1,000 records after filtering.

DataTables needs all of this information, so it knows how many pagination buttons to display, and what pagination data to show.

Note that it is entirely the server's responsibility to do all this work - that's why it's called "server-side" processing.

The client (browser) only has 10 records to render - so that happens quickly.

(I just noticed that the screenshot mentions "500 records" - that's a mistake in my server-side code - there is no filter, so I need to fix that).

Subsequent Requests

When a user clicks on a page navigation button (e.g. page "4"), that triggers a new request from DataTables to the server. DataTables builds this request automatically, using the fields described here.

The request is sent as form data.

In our example, the request looks like this:

"Form data": {
    "draw": "5",
    "columns[0][data]": "id",
    "columns[0][name]": "",
    "columns[0][searchable]": "true",
    "columns[0][orderable]": "true",
    "columns[0][search][value]": "",
    "columns[0][search][regex]": "false",
    "columns[1][data]": "name",
    "columns[1][name]": "",
    "columns[1][searchable]": "true",
    "columns[1][orderable]": "true",
    "columns[1][search][value]": "",
    "columns[1][search][regex]": "false",
    "columns[2][data]": "description",
    "columns[2][name]": "",
    "columns[2][searchable]": "true",
    "columns[2][orderable]": "true",
    "columns[2][search][value]": "",
    "columns[2][search][regex]": "false",
    "order[0][column]": "1",
    "order[0][dir]": "asc",
    "start": "30",
    "length": "10",
    "search[value]": "",
    "search[regex]": "false"
}

These fields tell the server everything it needs to know, so it can prepare the correct response.

In our case the most important fields are these:

"start": "30",
"length": "10"

Start at row 30, and provide 10 records.

It is, again, the server's responsibility to prepare a JSON response which accurately reflects the requested data.

In our case this means the server needs to have logic to read through the text file to the correct starting point (data row 31 - remember the offset starts at zero), and 10 rows in total (rows 31 through 40).

Other fields in the above request from DataTables describe how the data is to be sorted, and filtered. In our case there is no filter "search[value]": "", - and the data is to be sorted by the first column in ascending order.

Final Notes

I have deliberately not described the following:

1) How your server-side code handles the creation of the JSON responses it sends back to DataTables;

2) How your server-side code parses the form requests it receives from DataTables.

That all depends entirely on what your server-side technology is. DataTables doesn't care. It's just passing JSON messages - it is decoupled from the server-side implementation - as it should be.

Regarding the "defer render" option described here, that is an enhancement you may choose to add if you feel you need it. But I would recommend getting a more basic server-side implementation working first.

这篇关于如何在页面加载时从表中加载一定数量的行,并仅在用户加载时加载更多行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆