danielalmeida1481/codeigniter3-datatables
Composer 安装命令:
composer require danielalmeida1481/codeigniter3-datatables
包简介
DataTables server-side for CodeIgniter
README 文档
README
DataTables server-side for CodeIgniter 3.
Note: This library only handle the server-side part, you still needs to configure the client side like jQuery, DataTables library and including the styles. Don't worry, we already give the examples below.
Requirements
If you are using CodeIgniter, let's go! You don't needs any extra requirements.
Installation
You just need to use composer and everything is done.
composer require danielalmeida1481/codeigniter3-datatables
Usage
Here is the basic example to use this library, you are freely make any changes for the client side, like defining searchable column, orderable column, etc...
CodeIgniter 3 Example
// CodeIgniter 3 Example // Here we will select all fields from posts table // and make a join with categories table // Please note: we don't need to call ->get() here $queryBuilder = $this->db->select('p.*, c.name category') ->from('posts p') ->join('categories c', 'c.id=p.category_id'); /** * The first parameter is the query builder instance */ $datatables = new Danielalmeida1481\CodeIgniterDataTables\DataTables($queryBuilder); $datatables->generate(); // done
The above example will give you for ajax data source (arrays), so you need to make sure the table header you makes for the client side is match with the ajax response. We will talk about the objects data source below.
Client Side Examples
You must include the jQuery and DataTables library.
<link href="https://cdn.datatables.net/1.11.5/css/jquery.dataTables.min.css" rel="stylesheet"> <table id="table-post" class="display" width="100%"> <thead> <th>ID</th> <th>Title</th> <th>Category</th> <th>Description</th> </thead> </table> <script src="https://code.jquery.com/jquery-3.5.1.js"></script> <script src="https://cdn.datatables.net/1.11.5/js/jquery.dataTables.min.js"></script> <script> $('#table-post').DataTable({ processing: true, serverSide: true, ajax: { url: 'http://localhost/project/index.php/post/ajax_datatables', // Change with your own method: 'GET', // You are freely to use POST or GET } }) </script>
Objects Data Source
As was mentioned above, the default data source we get is an arrays. It is easy also to get the objects data source.
To get objects response, you just need to call asObject() method.
$datatables->asObject() ->generate();
And then you can configure the client side with columns option to fit your data.
$('#table-post').DataTable({ processing: true, serverSide: true, ajax: { url: 'http://localhost/project/index.php/post/ajax_datatables', method: 'GET', }, columns: [ { data: 'id' }, { data: 'title' }, { data: 'category' }, { data: 'description' } ] }) </script>
Some Others Settings
Some basic functionalities already available, here is the full settings you can doing to this library.
Available Options
$datatables = new Danielalmeida1481\CodeIgniterDataTables\DataTables($queryBuilder); // Return the output as objects instead of arrays $datatables->asObject(); // Only return title & category (accept string or array) $datatables->only(['title', 'category']); // Return all except the id // You may use one of only or except $datatables->except(['id']); // Format the output $datatables->format('title', function($value, $row) { return '<b>'.$value.'</b>'; }); // Add extra column $datatables->addColumn('action', function($row) { return '<a href="url/to/delete/post/'.$row->id.'">Delete</a>'; }); // Add column alias // It is very useful when we use SELECT JOIN to prevent column ambiguous $datatables->addColumnAlias('p.id', 'id'); // Add column aliases // Same as the addColumnAlias, but for multiple alias at once $datatables->addColumnAliases([ 'p.id' => 'id', 'c.name' => 'category' ]); // Add squence number // The default key is `sequenceNumber` // You can change it with give the param $datatables->addSequenceNumber(); $datatables->addSequenceNumber('rowNumber'); // It will be rowNumber // Don't forget ot call generate to get the results $datatables->generate();
danielalmeida1481/codeigniter3-datatables 适用场景与选型建议
danielalmeida1481/codeigniter3-datatables 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 11 次下载、GitHub Stars 达 0, 最近一次更新时间为 2022 年 11 月 26 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 danielalmeida1481/codeigniter3-datatables 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 danielalmeida1481/codeigniter3-datatables 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 11
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 13
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-11-26