PHP 實現CodeIgniter分頁執行個體及多條件查詢解決方案

來源:互聯網
上載者:User
這篇文章主要介紹了PHP CodeIgniter分頁執行個體及多條件查詢的思路詳解,非常不錯,具有參考借鑒價值,需要的朋友可以參考下

最近在用CI架構的時候,用了CI的分頁類,以前是用前端整分頁,這次乾脆用用架構內建的,自己這個健忘的腦袋,還是記錄一下吧。

因為頁面中有條件式篩選的表單,所以想要完成的效果就是,輸入條件後,分頁跳轉之後能維持所輸入的條件。想了一下,自己的思路如下代碼吧。

controller 代碼

class Monitors extends CI_Controller {public function warning(){    $config= array();    $config['per_page'] = 15; //每頁顯示的資料數    $current_page = intval($this->input->get("per_page")); //擷取當前分頁頁碼數    $status=$this->input->get("filter-status",TRUE); $level=$this->input->get('filter-level',TRUE); $timestamp=$this->input->get('filter-timestamp',TRUE);    $all = $this->monitors_m->getAllData($current_page,$config['per_page'],$status,$timestamp,$level);   //這裡返回的有總條數和具體的資料,根據自己的情況略加修改即可 $data['allevent'] = $all['content']; $config['total_rows']   = $all['count'];//總條數    $config['num_links'] = 3;//頁碼串連數 $config['use_page_numbers'] = TRUE;  $config['page_query_strings'] = TRUE;//關鍵配置 $config['base_url'] = base_url().'index.php/monitors/warning?'&filter-status='.$status.'&filter-level='.$level.'&filter-timestamp='.$timestamp;//關鍵配置 $this->load->library('pagination');//載入ci pagination類 $this->pagination->initialize($config); $data['page'] = $this->pagination->create_links();//關鍵代碼 $this->load->view("monitors_v",$data);}

關鍵配置參數

$config[‘page_query_string']

如果設定成true,則url則是”index.php/monitors/warning?per_page=20”這樣的

【注】”per_page” 是預設傳遞的查詢字串,但也可以使用 $config[‘query_string_segment'] = ‘你的字串' 來配置

在我的方案中,設定為TRUE,當然TRUE是預設值,不管也可以;

$config[‘base_url']

一開始只是設定為以下這種情況的時候,在某一頁進行條件式篩選是可以的,但是跳轉後由於重新整理的問題條件又沒有了。

$config['base_url'] = base_url().'index.php/monitors/warning;

採用以下的方式即可,吼吼吼

$status=$this->input->get("filter-status",TRUE);$level=$this->input->get('filter-level',TRUE);$timestamp=$this->input->get('filter-timestamp',TRUE);$config['base_url'] = base_url().'index.php/monitors/warning?'&filter-status='.$status.'&filter-level='.$level.'&filter-timestamp='.$timestamp;//關鍵配置

view頁面代碼

就一句話,在你需要放置分頁元素的地方加上這樣一句就行,這裡的$page變數就是在controller裡存進去的$this->pagination->create_links();

<?php echo $page?>

設定分頁樣式

這裡採用的是bootstrap的樣式

$config['first_link']   = "<<";//首頁$config['prev_link']   = "<";//上一頁$config['next_link']   = ">";//下一頁$config['last_link']   = ">>";//尾頁$config['full_tag_open'] = '<ul class="pagination pagination-split">'; $config['full_tag_close'] = '</ul>'; $config['first_tag_open'] = '<li>';//第一個連結的起始標籤。$config['first_tag_close'] = '</li>';//第一個連結的結束標籤。$config['next_tag_open'] = '<li>';//下一頁連結的起始標籤。$config['next_tag_close'] = '</li>';//下一頁連結的結束標籤。$config['prev_tag_open'] = '<li>';//上一頁連結的起始標籤。$config['prev_tag_close'] = '</li>';//上一頁連結的結束標籤。$config['cur_tag_open'] = '<li class="active"><a>';$config['cur_tag_close'] = '</a></li>';//當前頁連結的結束標籤。$config['num_tag_open'] = '<li>';//數字連結的起始標籤。$config['num_tag_close'] = '</li>';//數字連結的結束標籤。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.