我正在使用Codeigniter 3.1.8开发基本的博客应用程序。和Bootstrap4。该应用程序具有搜索帖子功能。
标题视图中的表单:
<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>
为什么会这样?我的错误在哪里?
答案 0 :(得分:1)
在_initPagination
方法内添加这2行即可解决问题:
$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');
}
}
答案 1 :(得分:0)
这是一个解决方案:
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
}