あなたが私を助けてくれることを願っています。私の問題は、datatable プラグインに合計 50000 行の大量のデータをロードしたいのですが、それを CodeIgniter フレームワークに組み込む方法がわかりません。これが私のサンプルデータです。
私のコントローラーでは、このような関数を作成します。テスト目的で、モデルには入れませんでした。
public function displayListItem(){
$sqlSelectAll = "select * from items";
$resultSelectAll = $this->db->query($sqlSelectAll);
echo json_encode($resultSelectAll->row_array());
}
次は、SQL を呼び出す私のビューです。
<!-- jquery part -->
<script type="text/javascript">
$(document).ready(function() {
$('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sAjaxSource": "<?php echo site_url("item_controller/displayListItem"); ?>"
} );
} );
以下は、mysqlデータベースからデータを入力するテーブルです
<table id="example">
<thead>
<tr>
<th></th>
<th>CODE</th>
<th>NAME</th>
<th>DESCRIPTION</th>
<th>BRAND</th>
<th>UNIT</th>
<th>CATEGORY NAME</th>
<th>ENTRY DATE</th>
<th>ACTION</th>
</tr>
</thead>
<tbody>
<!-- THIS IS THE PART WHERE I NEED TO PUT THE DATA, BUT I DON'T KNOW HOW -->
</tbody>
</table>
それがすべての人です。あなたが私を助けてくれることを願っています。ありがとう