[轉]ThinkPHP中分頁加上搜尋

來源:互聯網
上載者:User

標籤:blog   io   資料   for   ar   cti   div   amp   

ThinkPHP 分頁可以很容易的實現對不固定查詢參數的支援。具體實現是給分頁類的 parameter 屬性賦值或者直接執行個體化分頁類時傳入查詢參數。下面以例子來說明。
parameter 屬性賦值

例如要檢索使用者表中狀態為 1 (status=1) 並且電子包含 163 的使用者,當提交表單時(注意表單是 GET 方式提交),形成的 URL 地址大致如下:

public function search(){

    $Dao = M("User");

    // 構造查詢條件

    $condition[‘status‘] = $_GET[‘status‘];

    $condition[‘email‘] = array(‘like‘,"%".$_GET[‘email‘]."%");

    // 計算總數

    $count = $Dao->where($condition)->count();

    // 匯入分頁類

    import("ORG.Util.Page");

    // 執行個體化分頁類

   $p = new Page($count, 10);

    // 擷取查詢參數

    $map[‘status‘] = $_GET[‘status‘];

    $map[‘email‘] = $_GET[‘email‘];

    foreach($map as $key=>$val) { 

        $p->parameter .= "$key=".urlencode($val)."&"; 

    }

    // 分頁顯示輸出

    $page = $p->show();

 

    // 當前頁資料查詢

    $list = $Dao->where($condition)->order(‘uid ASC‘)->limit($p->firstRow.‘,‘.$p->listRows)->select();

 

    // 賦值賦值

    $this->assign(‘page‘, $page);

    $this->assign(‘list‘, $list);


    $this->display();

}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.