jquery - 禁用初始自动 ajax 调用 - DataTable 服务器端分页

标签 jquery ajax datatables datatables-1.10

我有一个使用服务器端分页初始化的数据表,它工作正常。该表在初始化期间触发ajax、拉取数据并呈现到表上。但是,我最初需要空表,然后使用 load() 或 reload() 单击按钮加载表数据,例如:

myTable.api().ajax.reload();

这是我的表初始化:

function initTestTable(){
    myTable =  $('#testTable').dataTable({
    "processing": true,
    "serverSide": true,
    "ajax": {
        "url": "testTableData.html",
        "type": "GET",
    },
    "columns": [
        { "data": "code" },
        { "data": "description" }
    ]
 });
}

应该有办法限制初始化期间表的加载吗?我阅读了文档但找不到。请提出建议。

最佳答案

您可以使用deferLoading参数并将其设置为0。这将延迟数据加载,直到以编程方式发生过滤、排序操作或绘制/重新加载 Ajax。

function initTestTable(){
    myTable =  $('#testTable').dataTable({
    "processing": true,
    "serverSide": true,
    "deferLoading": 0, // here
    "ajax": {
        "url": "testTableData.html",
        "type": "GET",
    },
    "columns": [
        { "data": "code" },
        { "data": "description" }
    ]
 });
}

要在单击按钮时触发 Ajax,您可以在处理程序中添加类似以下内容:

function buttonClickHandler(event){
  $('#testTable').DataTable().draw();
}

请参阅下面的示例进行演示。

$(document).ready(function() {
  // AJAX emulation for demonstration only
  $.mockjax({
      url: '/test/0',
      responseTime: 200,
      response: function(settings){
         this.responseText = {
            draw: settings.data.draw,
            data: [
              [ "Tiger Nixon", "System Architect", "Edinburgh", 61, "2011/04/25", "$320,800" ],
              [ "Tiger Nixon", "System Architect", "Edinburgh", 61, "2011/04/25", "$320,800" ],
              [ "Tiger Nixon", "System Architect", "Edinburgh", 61, "2011/04/25", "$320,800" ],
              [ "Tiger Nixon", "System Architect", "Edinburgh", 61, "2011/04/25", "$320,800" ],
              [ "Tiger Nixon", "System Architect", "Edinburgh", 61, "2011/04/25", "$320,800" ],
              [ "Tiger Nixon", "System Architect", "Edinburgh", 61, "2011/04/25", "$320,800" ],
              [ "Tiger Nixon", "System Architect", "Edinburgh", 61, "2011/04/25", "$320,800" ],
              [ "Tiger Nixon", "System Architect", "Edinburgh", 61, "2011/04/25", "$320,800" ],
              [ "Tiger Nixon", "System Architect", "Edinburgh", 61, "2011/04/25", "$320,800" ],
              [ "Tiger Nixon", "System Architect", "Edinburgh", 61, "2011/04/25", "$320,800" ]
            ],
            recordsTotal: 1000,
            recordsFiltered: 1000
         };
      }
  });

  $('#example').DataTable({    
    "processing": true,
    "serverSide": true,
    "deferLoading": 0,
    "ajax": {
        "url": "/test/0",
        "type": "GET"
    }    
  });
      
  $('#btn-reload').on('click', function(){
     $('#example').DataTable().draw()  
  });
});
<!DOCTYPE html>
<html>

<head>
<meta charset="ISO-8859-1">
<link href="//cdn.datatables.net/1.10.5/css/jquery.dataTables.min.css" rel="stylesheet"/> 
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> 
<script src="//cdn.datatables.net/1.10.5/js/jquery.dataTables.min.js"></script>
<script src="http://vitalets.github.com/x-editable/assets/mockjax/jquery.mockjax.js"></script>
  
</head>
<body>
<p>
<button id="btn-reload">Reload</button>
</p>
<table id="example" class="display" cellspacing="0" width="100%">

<thead>
   <tr>
      <th>Name</th>
      <th>Position</th>
      <th>Office</th>
      <th>Age</th>
      <th>Start date</th>
      <th>Salary</th>
   </tr>
</thead>

<tfoot>
   <tr>
      <th>Name</th>
      <th>Position</th>
      <th>Office</th>
      <th>Age</th>
      <th>Start date</th>
      <th>Salary</th>
   </tr>
</tfoot>

<tbody>
</tbody>
</table>
</body>
</html>

关于jquery - 禁用初始自动 ajax 调用 - DataTable 服务器端分页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31175340/

相关文章:

javascript - Jquery Waypoints .sticky 方法

javascript - 如何使用选择菜单从单选按钮中删除禁用的属性

php - 在 php 变量中存储按钮 id

JQuery 和 Ajax : Cannot read property 'length' of undefined

ajax - p :ajax fires twice

jquery - 服务器端处理的数据表中的日期范围过滤器

javascript - 如何在JQuery中打印数组元素?

javascript - jQuery 如何使用 ajax 读取和格式化数据以进行自动完成

javascript - 是否可以按日期(过去、现在、 future )拆分数据表 js,并可选择扩展和折叠?

javascript - 数据表只更新行而不重新加载表