如何在codeigniter中执行排序、搜索、分页

Posted

技术标签:

【中文标题】如何在codeigniter中执行排序、搜索、分页【英文标题】:how to perform sorting,search,pagination in codeigniter 【发布时间】:2016-01-30 12:47:05 【问题描述】:

我是 codeigniter 的新手。我想搜索、排序并将分页应用于我的表格。 我尽力了。当搜索代码工作时,排序可能不起作用。我不能在一个表中执行这三个操作。请帮我。

【问题讨论】:

阅读本教程w3code.in/2015/10/how-to-do-pagination-in-codeigniter 【参考方案1】:

使用Bootstrap datatables。它也有内置的搜索、排序和分页功能。


我的代码示例

可见

<div style="clear: both; margin-top: 35px"></div>
<div class="container">
    <div class="col-sm-12" style="padding: 0px">
        <div class="row">
            <div class="col-sm-10 col-sm-offset-1 " style="padding-right:0px;">
                <table id="example" class="table table-striped table-bordered" cellspacing="0" >

                    <thead>
                    <tr>
                        <th ></th>
                        <th ></th>
                        <th ></th>
                        <th ></th>
                        <th ></th>
                    </tr>
                    </thead>
                    <tbody>
                    <?
                        foreach ( $ as $ )
                        
                            ?>
                            <tr>
                                <td><?php echo $['']?></td>
                                <td><?php echo $['']?></td>
                                <td><?php echo $['']?></td>
                                <td><?php echo $['']?></td>
                            </tr>
                        <?
                        

                    ?>

                    </tbody>
                </table>
            </div>

        </div>
    </div>
</div>

在控制器中

$data[''] = $this->model_name->function_name();

在标题中

<link href="<?php echo base_url(); ?>css/bootstrap.css" rel="stylesheet" /> 
<link href="<?php echo base_url(); ?>css/bootstrap-glyphicons.css" rel="stylesheet" />
<link href="https://cdn.datatables.net/plug-ins/1.10.7/integration/bootstrap/3/dataTables.bootstrap.css" rel="stylesheet" />

输出

【讨论】:

@ Abdulla 是的.. 这真的很有帮助。 :) @SaranyaR 乐于提供帮助 :) 享受编码 @SaranyaR 这也添加了bootstrap-glyphicons.css。可以在引导站点下载

以上是关于如何在codeigniter中执行排序、搜索、分页的主要内容,如果未能解决你的问题,请参考以下文章

如何修复 php codeigniter 中的 DataTables 分页和搜索框?

在codeigniter中搜索所有分页链接的分页

在 CodeIgniter 中使用搜索过滤器进行分页

在Codeigniter中搜索的分页不起作用

用于排序、分页和过滤的 CodeIgniter 优雅库 [关闭]

如何使用 codeigniter 分页库回显页码?