CodeIgniter搜索结果分页

时间:2014-02-24 20:52:30

标签: php codeigniter search pagination

我已经四处搜索和搜索,但我仍然无法找到解决问题的方法。我还是php和codeigniter的新手,所以也许我已经错过了答案,但无论如何,这就是我想要做的。

这是我的控制器(c_index.php) - 调用搜索功能并对结果数组执行分页。

<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');

class C_index extends CI_Controller {


public function __construct()
{
    parent::__construct();
    $this->load->model('m_search');
    $this->load->library("pagination");
    $this->load->library("table");
}
/** Index Page for this controller */
public function index()
{
    if($this->session->userdata('logged_in')){
        $this->load->view('v_user');    
    }   
    else{
        $this->load->view('index'); 
    }
}

public function search() 
{
            // start of search
    $search_term = $this->input->post('word');
    $books = $this->m_search->search_books($search_term);

            // start of pagination
    $config['base_url'] = "http://localhost/test/index.php/c_index/search";
    $config['per_page'] = 5;
    $config['num_links'] = 7;
    $config['total_rows'] = count($books);

    echo $config['total_rows'];
    $this->pagination->initialize($config);
    $data['query'] = array_slice($books,$this->uri->segment(3),$config['per_page']);
    $this->load->view("index",$data);

}

}

这是我的观点(index.php) - 基本上只显示分页结果

<h3> Search Results </h3>   
    <!-- table -->              
    <table class="table table-condensed table-hover table-striped" id="result_table">
        <tbody>
        <?php
        if(isset ($query)){
            if(count($query)!=0){
                foreach($query as $item){
                echo "<tr><td>". $item['title'] ." by " .$item['author'] ."<br/></td></tr>";
                }
                echo $this->pagination->create_links();
            }
            else
            {
                echo "No results found for keyword ' ". $this->input->post('word')." ' .";
            }
        }
        else
        {
            echo "Start a search by typing on the Search Bar";
        }
        ?>              
        </tbody>
    </table>

我的模型(m_search.php) - 基本上搜索数据库并返回结果数组。

<?php

类M_search扩展了CI_Model {

function search_books($search_term='default')
{

    $filter = $this->input->post('filter');
    //echo $filter;

    if($filter == 'title')
    {
        //echo 'title';
        $this->db->select('*');
        $this->db->from('book');
        $this->db->like('title',$search_term);
        // Execute the query.
        $query = $this->db->get();
        return $query->result_array();

    }else if($filter == 'author')
    {
        //echo 'author';
        $this->db->select('*');
        $this->db->from('book');
        $this->db->like('author',$search_term);
        // Execute the query.
        $query = $this->db->get();
        return $query->result_array();

    }else if($filter == 'type')
    {
        //echo 'type';
        $this->db->select('*');
        $this->db->from('book');
        $this->db->like('book_type',$search_term);
        // Execute the query.
        $query = $this->db->get();
        return $query->result_array();

    }else if($filter == 'status')
    {
        //echo 'status';
        $this->db->select('*');
        $this->db->from('book');
        $this->db->like('book_status',$search_term);
        // Execute the query.
        $query = $this->db->get();
        return $query->result_array();
    }else
    {
        //echo 'all';
        $this->db->select('*');
        $this->db->from('book');
        $this->db->like('book_status',$search_term);
        $this->db->or_like('book_type',$search_term);
        $this->db->or_like('author',$search_term);
        $this->db->or_like('title',$search_term);
        // Execute the query.
        $query = $this->db->get();
        return $query->result_array();
    }

}

}

现在我的问题是保留分页的结果。

第一页很好但每当我点击页面链接时,表格上的结果都会显示整个数据库,而不仅限于我的搜索结果。

我已经阅读过某个地方,我需要使用会话来保存我的search_term,以便在切换页面时它可以工作,但我不知道放在哪里。 任何建议或意见将不胜感激。感谢。

4 个答案:

答案 0 :(得分:2)

根据您的需要,有几种不同的方法可以处理搜索和分页。根据您现有的代码,这就是我要做的。

更改

$search_term = $this->input->post('word');

$search_term = ''; // default when no term in session or POST
if ($this->input->post('word'))
{
    // use the term from POST and set it to session
    $search_term = $this->input->post('word');
    $this->session->set_userdata('search_term', $search_term);
}
elseif ($this->session->userdata('search_term'))
{
    // if term is not in POST use existing term from session
    $search_term = $this->session->userdata('search_term');
}

答案 1 :(得分:1)

function search_books($search_term='default')
{

 $filter = $this->input->post('filter');
//echo $filter;
if($filter == 'title')
{
    $this->db->like('title',$search_term);
}
 else if($filter == 'author')
{
    $this->db->like('author',$search_term);
}
 else if($filter == 'type')
{
    $this->db->like('book_type',$search_term);

}
else if($filter == 'status')
{
    $this->db->like('book_status',$search_term);
}
 else
{

    $this->db->like('book_status',$search_term);
    $this->db->or_like('book_type',$search_term);
    $this->db->or_like('author',$search_term);
    $this->db->or_like('title',$search_term);
     // Execute the query.

    }
    $query = $this->db->get('book');
    return $query->result_array();

} 

}

如果您不想使用&#34;会话&#34;只是尝试减少您的模型代码。并且想要复制,粘贴链接/网址并在搜索中获得相同的结果,那么您应该在控制器中使用uri类。

答案 2 :(得分:0)

在Controller中尝试这种方式,

rabbitmq

答案 3 :(得分:0)

您可以在控制器中使用以下代码,所有查询字符串都将显示在分页链接中。

$config['reuse_query_string']=TRUE;

了解分页链接中的其他参数,您可以在2行后注释。

//$getData = array('s'=>$search);

//$config['suffix'] = '?'.http_build_query($getData,'',"&amp;");

$this->pagination->initialize($config);
相关问题