使用get_where而不是get时,Codeigniter分页无法正常工作

时间:2018-01-21 22:02:59

标签: php mysql twitter-bootstrap codeigniter pagination

我正在使用CodeIgniter 3和Twitter Bootstrap开发注册和登录应用程序。

该应用程序有2个表:用户客户。登录用户后,可以添加客户

客户显示在分页表中,如下图所示:

enter image description here

我很容易在数据库中显示所有客户,无论添加了哪些用户:

控制器

class Home extends CI_Controller { 
   public function index() {
        $this->load->model('Customer');
        $this->load->library('pagination');
        $config = [
            'base_url' => base_url("/home/"),
            'page_query_string' => TRUE,
            'query_string_segment' => 'page',
            'display_pages' => TRUE,
            'use_page_numbers' => TRUE,
            'per_page' => 10,
            'total_rows' =>    $this->Customer->get_num_rows(),
            'uri_segment' => 3,
            'first_link' => '«',
            'first_tag_open' =>  '<li>',
            'first_tag_close' => '</li>',
            'last_link' => '&raquo;',
            'last_tag_open' =>  '<li>',
            'last_tag_close' => '</li>',
            'full_tag_open' =>    '<ul class="pagination">',
            'full_tag_close' =>    '</ul>',
            'next_link' =>    '&rsaquo;',
            'next_tag_open' =>    '<li>',
            'next_tag_close' =>    '</li>',
            'prev_link' => '&lsaquo;',
            'prev_tag_open' =>    '<li>',
            'prev_tag_close' =>    '</li>',
            'num_tag_open' =>    '<li>',
            'num_tag_close' =>    '</li>',
            'cur_tag_open' =>    '<li class="active"><a>',
            'cur_tag_close' =>    '</a></li>'
        ];
        if (!isset($_GET[$config['query_string_segment']]) || $_GET[$config['query_string_segment']] < 1) {
            $_GET[$config['query_string_segment']] = 1;
        }
        $uid = $this->session->userdata('user_id');
        $limit = $config['per_page'];
        $offset = ($this->input->get($config['query_string_segment']) - 1) * $limit;
        $this->pagination->initialize($config);
        $customers = $this->Customer->getCustomers($limit, $offset);
        if ($this->agent->is_mobile()) {
            $this->load->view('mobile/home', ['records'=>$customers]);
        } else {
            $this->load->view('home', ['records'=>$customers]);
        }
    }
}

模型

class Customer extends CI_Model {    
   public function getCustomers($limit, $offset) {
    $query = $this->db->get('customers', $limit, $offset);
    return $query->result();
   }
}

但我需要能够向每个已登录的用户显示他的客户。所以,在 controller 中,我有:

  1. 添加了已登录的用户ID $uid = $this->session->userdata('user_id');
  2. $customers = $this->Customer->getCustomers($limit, $offset);替换为$customers = $this->Customer->getCustomers($uid, $limit, $offset);
  3. 在模型中,我将getCustomers()方法更改为:

    public function getCustomers($uid, $limit, $offset) {
         $query = $this->db->get_where('customers', ['uid' => $uid], $limit, $offset);
        return $query->result();
    }
    

    在这种情况下,分页显示更多项目然后它应该:只有一个页面,但有一个链接到第2页,没有项目。

    enter image description here

    我的错误在哪里?

1 个答案:

答案 0 :(得分:1)

在获得所有客户时,您计算的结果数量与您相同。因此,分页类仍然认为您具有相同数量的条目。 即

'total_rows' =>    $this->Customer->get_num_rows(),

但是当使用get_where时,你会减少这个数量。因此,您需要更改计算“total_rows”的方式以适应。