ThinkPHP使用getlist方法实现数据搜索功能示例

本文实例讲述了ThinkPHP使用getlist方法实现数据搜索功能。分享给大家供大家参考,具体如下:

自己在ThinkPHP之中的model之中书写getlist方法,其实所谓的搜索功能无非就是数据库查询之中用到的like  %string%,或者其他的 字段名=特定值,这些sql语句拼接在and语句之中;

HTML之中:

<form action="" method="get"> <table class="account_table" width="100%" cellpadding="0" cellspacing="0"> <tr> <td style="text-align:right">订单号:</td> <td> <input id="Orderid" name="order_sn" class="inp_wid3" type="text" value="{$_GET['order_sn']}"/> </td> <td style="text-align:right"> 下单日期: </td> <td colspan="5"> <input type="text" class="inp_wid2" id="BeginTime" name="begintime" value="{$_GET['begintime']}" /> 至 <input type="text" class="inp_wid2" id="EndTime" name="endtime" value="{$_GET['endtime']}" />  交易完成日期 <input type="text" class="inp_wid2" id="txtFinishedBeginTime" name="finishbegintime" value="{$_GET['finishbegintime']}" /> 至 <input type="text" class="inp_wid2" id="txtFinishedEndTime" name="finishendtime" value="{$_GET['finishendtime']}" />  订单金额: <input type="text" class="inp_wid2" id="txtMoneyMin" name="count_price_min" value="{$_GET['count_price_min']}"/> 至 <input type="text" class="inp_wid2" id="txtMoneyMax" name="count_price_max" value="{$_GET['count_price_max']}" /> </td> </tr> <tr> <td style="text-align:right; width:80px">采购商名称:</td> <td style="width:140px"> <input id="SupermarketName" name="user_nick_name" class="inp_wid3" type="text" value="{$_GET['user_nick_name']}" /> </td> <td style="text-align:right; width:80px">采购商账号:</td> <td style="width:140px"> <input id="SupermarketZh" name="user_name" class="inp_wid3" type="text" value="{$_GET['user_name']}" /> </td> </tr> <tr> <td colspan="2"> <input class="search_btn1" type="submit" value="搜索" id="Search" /> </td> </tr> </table> </form>

看到没GET方法提交表单,这个是查询条件填入选项;

控制器之中:

$order_msg=$order->getList(); $this->assign('info',$order_msg);//这个获取订单的详细信息

Model之中:

public function getList($pagesize=25){ $tableName = $this->getTableName(); $where = $tableName.'.service_id = '.$_SESSION['service_site']['service_id']; if(!empty($_GET['order_sn'])){//查询订单号 $where.= " and $tableName.`order_sn` like '%".$_GET['order_sn']."%'"; } if(!empty($_GET['count_price_min'])){//查询订单最小金额 $where.= " and $tableName.count_price >=".$_GET['count_price_min'].""; } if(!empty($_GET['begintime'])){//下单开始日期搜索 $_GET['begintime']=strtotime($_GET['begintime']);//将日期转为时间戳 $where.= " and $tableName.add_time >=".$_GET['begintime'].""; $_GET['begintime']=date('Y-m-d',$_GET['begintime']);//将日期转为时间戳 } if(!empty($_GET['endtime'])){//下单结束日期搜索 $_GET['endtime']=strtotime($_GET['endtime']);//将日期转为时间戳 $where.= " and $tableName.add_time <=".$_GET['endtime'].""; $_GET['endtime']=date('Y-m-d',$_GET['endtime']);//将时间戳转换成日期,方便刷新页面后前台显示 } if(!empty($_GET['finishbegintime'])){//交易完成开始日期搜索 $_GET['finishbegintime']=strtotime($_GET['finishbegintime']);//将日期转为时间戳 $where.= " and $tableName.ok_time >=".$_GET['finishbegintime'].""; $_GET['finishbegintime']=date('Y-m-d',$_GET['finishbegintime']);//将日期转为时间戳 } if(!empty($_GET['finishendtime'])){//交易完成结束日期搜索 $_GET['finishendtime']=strtotime($_GET['finishendtime']);//将日期转为时间戳 $where.= " and $tableName.ok_time <=".$_GET['finishendtime'].""; $_GET['finishendtime']=date('Y-m-d',$_GET['finishendtime']);//将时间戳转换成日期,方便刷新页面后前台显示 } if(!empty($_GET['send'])){//查询已发货预警订单,发货时间距离此刻超过五天 $where.= " and $tableName.send_time < '".(time()-60*60*24*5)."'"; } if(!empty($_GET['doingorder'])){//查询处理中的订单 $where.= " and $tableName.status in (0,1)"; } if(!empty($_GET['warningorder'])){//查询预警的订单:已经付款且时间超过24小时未发货 $where.= " and $tableName.pay_time < '".(time()-60*60*24)."'"; } if(!empty($_GET['warningorder'])){//查询预警的订单:已经付款且时间超过24小时未发货 $where.= " and $tableName.is_pay = 1 "; } if(!empty($_GET['warningorder'])){//查询预警的订单:已经付款且时间超过24小时未发货 $where.= " and $tableName.status in (0,1)"; } if(!empty($_GET['count_price_max'])){//查询订单最大金额 $where.= " and $tableName.count_price <=".$_GET['count_price_max'].""; } if(!empty($_GET['user_nick_name'])){//查询采购商名称 $where.= " and fab_user.nick_name like '".$_GET['user_nick_name']."%'"; } if(!empty($_GET['user_name'])){//查询采购商账号 $where.= " and fab_user.user_name like '".$_GET['user_name']."%'"; } if(!empty($_GET['supplier_nick_name'])){//查询供应商商名称 $where.= " and fab_supplier.nick_name like '".$_GET['supplier_nick_name']."%'"; } if(!empty($_GET['supplier_name'])){//查询供应商账号 $where.= " and fab_supplier.supplier_name like '".$_GET['supplier_name']."%'"; } if($_GET['history'] == 1){ $where .= " and {$tableName}.status in (2,3,4) "; } if(($_GET['pay_type'])!=""&&($_GET['pay_type'])!=-1){//查询支付方式 $where.= " and fab_order_info.pay_type = ".$_GET['pay_type'].""; } if(($_GET['status'])!=""&&($_GET['status'])!=-1){//查询订单状态 $where.= " and fab_order_info.status = ".$_GET['status'].""; } if(!empty($_GET['stime']) && !empty($_GET['etime'])){ $stime = strtotime($_GET['stime']); $etime = strtotime($_GET['etime']) + 24*60*60; $where.= " and ($tableName.`inputtime` between '$stime' and '$etime')"; } $count = $this->where($where)->count(); $this->countNum = $count; $Page = new \Think\Page($count,$pagesize); $this->page = $Page->show(); $limit = $Page->firstRow.','.$Page->listRows; $sql="select $tableName.*,fab_supplier.nick_name as supplier_nick_name,fab_user.nick_name as user_nick_name from ($tableName left join fab_supplier on fab_order_info.supplier_id=fab_supplier.supplier_id) left join fab_user on fab_order_info.user_id=fab_user.user_id where $where order by $tableName.`order_id` desc limit $limit"; $sqls="select sum(fab_order_info.count_price) as order_price,count(fab_order_info.count_price) as order_count from $tableName where $where order by $tableName.`order_id` desc limit $limit"; $this->sql_msg=$this->query($sqls); return $this->query($sql);//订单详细信息 }

你只需要留意那个GET数据获取,然后进行拼接SQL语句;你为何总是拼接错误呢!!!

<?php namespace Admin\Model; use Think\Model; class KuaidicompanyModel extends Model { private $page = ""; public function getList($pagesize=25){ $where = '1'; $tableName = $this->getTableName(); $count = $this->where($where)->count(); $Page = new \Think\Page($count,$pagesize); $this->page = $Page->show(); $limit = $Page->firstRow.','.$Page->listRows; return $this->query("select * from $tableName where $where order by $tableName.`id` asc limit $limit "); } public function getPage(){ return $this->page; } }

精简通用版getlist,实用于分页。

<?php namespace Admin\Model; use Think\Model; class KuaidicompanyModel extends Model { private $page = ""; public function getList($pagesize=25){ $where = '1'; $tableName = $this->getTableName(); $count = $this->where($where)->count(); $Page = new \Think\Page($count,$pagesize); $this->page = $Page->show(); $limit = $Page->firstRow.','.$Page->listRows; return $this->query("select * from $tableName where $where order by $tableName.`id` asc limit $limit "); } public function getPage(){ return $this->page; } }

精简版MODEL用于数据自动验证

更多关于thinkPHP相关内容感兴趣的读者可查看本站专题:《ThinkPHP入门教程》、《thinkPHP模板操作技巧总结》、《ThinkPHP常用方法总结》、《codeigniter入门教程》、《CI(CodeIgniter)框架进阶教程》、《Zend FrameWork框架入门教程》及《PHP模板技术总结》。

希望本文所述对大家基于ThinkPHP框架的PHP程序设计有所帮助。

时间: 2024-10-28 12:23:47

ThinkPHP使用getlist方法实现数据搜索功能示例的相关文章

ThinkPHP实现ajax仿官网搜索功能实例_php实例

本文实例讲述了ThinkPHP实现ajax仿官网搜索功能的方法.分享给大家供大家参考. 具体实现方法如下: 后台代码: 复制代码 代码如下: //搜索,如果在1不在0  function search(){      $keyword = $_POST['search'];      $Goods=M('goods');    //这里我做的一个模糊查询到名字或者对应的id,主要目的因为我这个系统是    //商城系统里面用到直接看产品ID      $map['goods_id|goods_n

ui组件之input多选下拉实现方法(带有搜索功能)_jquery

我的风格,先上效果图,如果大家感觉还不错,请参考实现代码. 废话不说 先看div层次结构 <!-- 最外层div 可以任意指定 主要用于定义子元素宽度 --> <div class="col-xs-10" style="width:800px"> <!-- 表单label 添加文字提示 --> <label for="" class="label-control">全文检索<

win7搜索功能不能用了怎么办?

  win7搜索功能不能用了怎么办?win7系统自带有搜索功能,可帮助用户快速找到所需的文件或程序,搜索功能虽然速度不太给力但是准确度还是有保障.一位用户说win7搜索功能不能用了,没办法搜索到想要的文件,怎么办呢?有什么方法可以恢复搜索功能?大部分情况下搜索功能失灵都是因为相关服务被禁用造成的,我们检查并开启对应服务就可以解决问题,大家一起来学习下吧. 具体方法如下: 1.首先进入控制面板; 2.点击"程序"; 3.点击"打开或关闭Windows功能"; 4.检查

JS实现表格数据各种搜索功能的方法

 这篇文章主要介绍了JS实现表格数据各种搜索功能的方法,可实现忽略大小写,模糊搜索,多关键搜索等功能,具有一定参考借鉴价值,需要的朋友可以参考下     本文实例讲述了JS实现表格数据各种搜索功能.可忽略大小写,模糊搜索,多关键搜索.分享给大家供大家参考.具体实现方法如下: 代码如下: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title&

JS实现表格数据各种搜索功能的方法_javascript技巧

本文实例讲述了JS实现表格数据各种搜索功能.可忽略大小写,模糊搜索,多关键搜索.分享给大家供大家参考.具体实现方法如下: 复制代码 代码如下: <!DOCTYPE html> <html>  <head>   <meta charset="utf-8">   <title></title>   <script type="text/javascript">    window.onl

Thinkphp连表查询及数据导出方法示例_php实例

本文实例讲述了Thinkphp连表查询及数据导出的方法.分享给大家供大家参考,具体如下: 这今天实验室的招新工作就要展开了,我们通过实验室网站关联到杭电OJ,大一的新生将他们杭电的用户名在实验室网站提交,网站就会通过网络爬虫到杭电OJ上面进行数据抓取存到实验室数据库. 现在我要做的事就是把新生表和新生OJ数据表联合导出.实验室网站是用thinkphp框架开发的.所以根据以前的工作经验.问题很快就解决了. 现在跟大家分享一下. thinkphp的扩张类都是放在ORG目录下面,在通过import()

win7系统搜索功能失效的解决方法

  win7系统搜索功能失效的解决方法           1.在桌面上按组合键(win+R)打开"运行窗口"或者点击桌面左下角"开始菜单"找到"运行...",在运行界面输入框输入"regedit",按回车键确认,如下图所示: 2.打开注册表编辑器后,依次展开路径"HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionExplorerCabinetState&q

XP系统各种丢失&quot;搜索&quot;功能解决方法

  XP系统各种丢失"搜索"功能解决方法 单击左下角的开始菜单,单击"运行",在打开的运行对话框中键入%SystemRoot%inf,回车 在打开的文件夹窗口定位到"srchasst.inf"文件 插入系统安装光盘,鼠标右击"srchasst.inf"文件,单击"安装"项 "搜索"功能出错的解决方法 在"开始→运行"对话框中键入"cmd"命令,点击

win7系统下文件搜索功能不见了的解决方法

  你们在电脑磁盘中想要找一个文件,一般是怎么寻找的?一个磁盘一个磁盘的找寻,还是在搜索功能中输入关键字?很多人也许都对文件进行了分类整理,方便文件的管理,但是大多数人还是没有整理的,或者是文件一多的时候更加难以管理了,这个时候电脑中的搜索功能显得至关重要.最近不少用户提议说win 7系统中的搜索功能不见了,这么人性化的设计怎么会无缘无故的消失呢?下面小编教大家找回搜索功能! 解决方法: 第一种情况:可能是因为账户权限的原因,导致自己无权限使用win7电脑中的搜索功能,咱们只需要注销电脑,切换到