データベースからテーブルにデータを取得しようとすると、次のエラーが発生します。
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 を使用しています。
このエラーが発生する理由と、データをテーブルに取得する方法を教えてください。