我希望你能帮助我。我的问题是我想在我的数据表插件中加载总计 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>
这就是所有的人,我希望你能帮助我。谢谢