>  기사  >  백엔드 개발  >  데이터 검색 기능 구현을 위한 ThinkPHP의 getlist 메소드 사용 분석

데이터 검색 기능 구현을 위한 ThinkPHP의 getlist 메소드 사용 분석

不言
不言원래의
2018-06-08 11:58:511994검색

이 글에서는 ThinkPHP가 getlist 메소드를 사용하여 데이터 검색 기능을 구현하는 방법을 주로 소개합니다. thinkPHP가 getlist를 사용하여 주어진 조건에 따라 데이터 읽기 및 표시를 구현하는 방법을 예제를 기반으로 자세히 분석합니다.

The 이 기사의 예제에서는 ThinkPHP가 getlist 메소드를 사용하여 데이터 검색 기능을 구현하는 방법을 설명합니다. 참고용으로 모든 사람과 공유하세요. 세부 사항은 다음과 같습니다.

저는 ThinkPHP의 모델에 getlist 메소드를 작성합니다. 실제로 소위 검색 기능은 %string% 또는 사용된 다른 필드 이름에 지나지 않습니다. 데이터베이스 쿼리 = 특정 값에서 이러한 SQL 문은 및 문에 연결됩니다.

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[&#39;order_sn&#39;]}"/>
        </td>
        <td style="text-align:right">
          下单日期:
        </td>
        <td colspan="5">
          <input type="text" class="inp_wid2" id="BeginTime" name="begintime" value="{$_GET[&#39;begintime&#39;]}" />
          至
          <input type="text" class="inp_wid2" id="EndTime" name="endtime" value="{$_GET[&#39;endtime&#39;]}" />
           交易完成日期
          <input type="text" class="inp_wid2" id="txtFinishedBeginTime" name="finishbegintime" value="{$_GET[&#39;finishbegintime&#39;]}" />
          至
          <input type="text" class="inp_wid2" id="txtFinishedEndTime" name="finishendtime" value="{$_GET[&#39;finishendtime&#39;]}" />
           订单金额:
          <input type="text" class="inp_wid2" id="txtMoneyMin" name="count_price_min" value="{$_GET[&#39;count_price_min&#39;]}"/>
          至
          <input type="text" class="inp_wid2" id="txtMoneyMax" name="count_price_max" value="{$_GET[&#39;count_price_max&#39;]}" />
        </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[&#39;user_nick_name&#39;]}" />
        </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[&#39;user_name&#39;]}" />
        </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(&#39;info&#39;,$order_msg);//这个获取订单的详细信息

모델에서:

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

MODEL의 간소화된 버전은 자동 데이터 확인에 사용됩니다.

위는 이 글의 전체 내용입니다. 더 많은 관련 내용을 보려면 도움이 되길 바랍니다. PHP 중국어 웹사이트를 주목하세요!

관련 권장 사항:

ThinkPHP 워터마킹 및 워터마크 위치 설정 분석

thinkphp 프레임워크에서 데이터를 추가하고 표시하는 기능적 방법에 대해

thinkphp3.2.0에서 setInc 메서드의 소스 코드 분석

위 내용은 데이터 검색 기능 구현을 위한 ThinkPHP의 getlist 메소드 사용 분석의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.