5

当我尝试将数据从我的数据库检索到表中时,我收到此错误:

DataTables warning (table id = 'student_table'): Requested unknown 
parameter '1' from the data source for row 0

下面是我使用的javascript

<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
    $('#student_table').dataTable( {
        "bProcessing": true,
        "bServerSide": true,
        "sServerMethod": "POST",
        "sAjaxSource": "<?php echo base_url()?>index.php/data/all"
    } );            
} );
</script>

检索到的 JSON 数据:

{"sEcho":0,"iTotalRecords":3,
"iTotalDisplayRecords":3,
"aaData":[["85","t1","1D"],["74","test475","4A"],
["777","maiz","5"]],"sColumns":"id,name,class"}

下面是我的表:

<table class="datatable tables" id="student_table">
    <thead>
        <tr>
            <th>ID</th>
            <th>Name</th>
            <th>Class</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td class="dataTables_empty">Loading data from server</td>
        </tr>
    </tbody>
</table> 

PHP 代码(点燃的数据表)

$this->load->library('datatables');

$this->datatables->select('admission,name,class');
$this->datatables->from('students');
echo $this->datatables->generate();

我正在使用 codeigniter 和 DataTables。

为什么会出现该错误以及如何将数据检索到表中?

4

4 回答 4

13

我也有同样的问题。问题在这里:

<tr>
          <td class="dataTables_empty">Loading data from server</td>
</tr>

您有三个<TH>但只有一个<td> 添加两个<td>将修复您的错误。还有一件事,如果没有数据可用,它将自动显示消息,您不需要显示消息。在这种情况下,您可以删除它,因为它会自动完成:

<tr>
          <td class="dataTables_empty">Loading data from server</td>
</tr>

为了自定义消息,将此作为选项传递"sEmptyTable": "Loading data from server"

$('.datatable ).dataTable({
  "bFilter": false,
   "bPaginate": false,
   "bLengthChange": false,
   "bInfo": false,
   "oLanguage": {
    "sEmptyTable": '',
    "sInfoEmpty": ''
   },
   "sEmptyTable": "Loading data from server"
 });
于 2013-02-02T07:22:20.390 回答
1

您正在使用 POST 方法来获取数据。如果您按照 php 提供的datatables示例进行操作,则使用 GET 方法。我假设当您使用排序或搜索时,所有请求都是 GET。

于 2012-09-05T11:45:25.237 回答
0

几个想法可能会有所帮助......

  1. 确保来自服务器的响应格式正确,带有正确的标头。例如 https://stackoverflow.com/a/4064468/661584我自己不确定点火器/php,但可能是个问题。

  2. 不确定 sColumns 参数本身是否正确,认为这是为了在客户端重新排序 cols ......并且仅与 sName 一起使用,请参阅 http://datatables.net/usage/columns#sNamehttp://datatables.net /用法/服务器端

所以这可能会搞砸。

  1. 如果它是别的东西,也许看看这里的答案......可能会有所帮助。

祝你好运

于 2012-10-20T06:39:23.490 回答
0

我们遇到了类似的问题...

但是,在你发疯之前 - 检查表中的数据。在我们的例子中,我们的数据在填充表格的数据中使用了超链接和花引号——当从 CSV 文件上传数据时,这些引号和花引号被去掉了。简短的故事是 IE 无法处理它,但 Chrome 和 Firefox 忽略了它。

于 2013-03-14T12:52:57.270 回答