Codeigniter поисковая система BUG: результаты нумерации страниц отображают ВСЕ сообщения - PullRequest
0 голосов
/ 23 сентября 2018

Я работаю над базовым приложением блога с Codeigniter 3.1.8.и Bootstrap 4. Приложение имеет функцию поиска постов.

Форма в заголовке:

<form method="get" action="<?php echo base_url('posts/search') ?>" id="search_form" class="w-100 py-1 px-2 px-md-3 px-lg-5" accept-charset="utf-8">
    <div class="input-group <?php if(form_error('search')) echo 'has-error';?>">
      <input class="form-control form-control-dark" type="text" name="search" placeholder="Search posts..." aria-label="Search">
      <?php if(form_error('search')) echo form_error('search'); ?> 
      <div class="input-group-append">
        <button class="btn btn-success" type="submit"><i class="fa fa-search"></i></button>
      </div>
    </div>
</form>

Поскольку посты разбиты на страницы, то и результаты поиска.Методы index() и search() являются частью одного и того же контроллера Posts, поэтому я попытался НЕ повторять код нумерации страниц:

private function _initPagination($path, $totalRows, $query_string_segment = 'page') {
    //load and configure pagination 
    $this->load->library('pagination');
    $config['base_url'] = base_url($path);
    $config['query_string_segment'] = $query_string_segment; 
    $config['total_rows'] = $totalRows;
    $config['per_page'] = 12;
    if (!isset($_GET[$config['query_string_segment']]) || $_GET[$config['query_string_segment']] < 1) {
      $_GET[$config['query_string_segment']] = 1;
    }
    $this->pagination->initialize($config);

    $limit = $config['per_page'];
    $offset = ($this->input->get($config['query_string_segment']) - 1) * $limit;

    return ['limit' => $limit, 'offset' => $offset];
  }

  public function index() {
    //call initialization method
    $config = $this->_initPagination("/posts", $this->Posts_model->get_num_rows());

    $data = $this->Static_model->get_static_data();
    $data['categories'] = $this->Categories_model->get_categories();

    //use limit and offset returned by _initPaginator method
    $data['posts'] = $this->Posts_model->get_posts($config['limit'], $config['offset']);
    $this->load->view('partials/header', $data);
    $this->load->view('posts');
    $this->load->view('partials/footer');
  }

  public function search() {
   // Force validation since the form's method is GET
   $this->form_validation->set_data($this->input->get());
   $this->form_validation->set_rules('search', 'Search term', 'required|trim|min_length[3]');
   $this->form_validation->set_error_delimiters('<p class = "error search-error"> ', ' </p>
       ');
    // If search fails
   if ($this->form_validation->run() === FALSE) {
       return $this->index();
   } else {
       $expression = $this->input->get('search');
       $posts_count = $this->Posts_model->search_count($expression);
       $query_string_segment = 'search=' . $expression . '&page';
       $config = $this->_initPagination("/posts/search", $posts_count, $query_string_segment);
       $data = $this->Static_model->get_static_data();
       $data['categories'] = $this->Categories_model->get_categories();
       //use limit and offset returned by _initPaginator method
       $data['posts'] = $this->Posts_model->search($expression, $config['limit'], $config['offset']);
       $data['expression'] = $expression;
       $data['posts_count'] = $posts_count;
       $this->load->view('partials/header', $data);
       $this->load->view('search');
       $this->load->view('partials/footer');
   }
} 

Модель:

public function search_count($expression) {
    $query = $this->db->like('title', $expression)
                      ->or_like('description', $expression)
                      ->or_like('content', $expression);
    $query = $this->db->get('posts');
    return $query->num_rows();  
}

public function search($expression, $limit, $offset) {
    $query = $this->db->like('title', $expression)
                        ->or_like('description', $expression)
                        ->or_like('content', $expression);
    $this->db->order_by('posts.id', 'DESC');
    $query = $this->db->get('posts', $limit, $offset);
    return $query->result();
}

ПРОБЛЕМА :

На первой странице результатов поиска отображаются 12 элементов, содержащих выражение поиска, , как ожидается, , но на всех других страницах отображаются всесообщения снова .

Поскольку для разбивки на страницы используется $config['query_string_segment'], строка $query_string_segment = 'search=' . $expression . '&page'; должна помочь передать поисковое выражение через $_GET[] на страницы 1, 2 и так далее.

Но ссылка на элементы страницы не сохраняется = и &:

<a href="http://localhost/ciblog/posts/search?search%3Dharum%26page=2" data-ci-pagination-page="2">2</a>

Почему это происходит?Где моя ошибка?

Ответы [ 2 ]

0 голосов
/ 01 октября 2018

Добавление этих 2 строк внутрь _initPagination методом решило проблему:

$config['enable_query_strings'] =TRUE;
$config['reuse_query_string'] =TRUE;

Весь код:

private function _initPagination($path, $totalRows, $query_string_segment = 'page') {
//load and configure pagination 
    $this->load->library('pagination');
    $config['base_url'] = base_url($path);
    $config['query_string_segment'] = $query_string_segment; 
    $config['enable_query_strings'] =TRUE;
    $config['reuse_query_string'] =TRUE;
    $config['total_rows'] = $totalRows;
    $config['per_page'] = 12;
    if (!isset($_GET[$config['query_string_segment']]) || $_GET[$config['query_string_segment']] < 1) {
        $_GET[$config['query_string_segment']] = 1;
    }
    $this->pagination->initialize($config);

    $limit = $config['per_page'];
    $offset = ($this->input->get($config['query_string_segment']) - 1) * $limit;

    return ['limit' => $limit, 'offset' => $offset];
}

public function search() {
   // Force validation since the form's method is GET
    $this->form_validation->set_data($this->input->get());
    $this->form_validation->set_rules('search', 'Search term', 'required|trim|min_length[3]');
    $this->form_validation->set_error_delimiters('<p class = "error search-error"> ', ' </p>
        ');
    // If search fails
    if ($this->form_validation->run() === FALSE) {
        return $this->index();
    } else {
        $expression = $this->input->get('search');
        $posts_count = $this->Posts_model->search_count($expression);
        $query_string_segment = 'page';
        $config = $this->_initPagination("/posts/search", $posts_count, $query_string_segment);
        $data = $this->Static_model->get_static_data();
        $data['categories'] = $this->Categories_model->get_categories();
   //use limit and offset returned by _initPaginator method
        $data['posts'] = $this->Posts_model->search($expression, $config['limit'], $config['offset']);
        $data['expression'] = $expression;
        $data['posts_count'] = $posts_count;
        $this->load->view('partials/header', $data);
        $this->load->view('search');
        $this->load->view('partials/footer');
    }
} 
0 голосов
/ 30 сентября 2018

Вот решение:

public function get_posts_search($keyword,$limit,$start){
   $this->db->where("(title LIKE '%$keyword%' || description LIKE '%$keyword%' || content LIKE '%$keyword%')");
   $this->db->limit($limit, $start);
   $query = $this->db->get('posts');
   return $query; //don't return result when your query haven't check if having a records
}
public function get_posts_search_total($keyword){
   $this->db->where("(title LIKE '%$keyword%' || description LIKE '%$keyword%' || content LIKE '%$keyword%')");
   $query = $this->db->get('posts');
   return $query->num_rows(); //don't return result when your query haven't check if having a records
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...