Codeigniter 分页不呈现分页链接
Posted
技术标签:
【中文标题】Codeigniter 分页不呈现分页链接【英文标题】:Codeigniter pagination not rendering pagination links 【发布时间】:2012-05-14 03:30:06 【问题描述】:你好,我有以下代码,
$this->load->library('pagination');
$this->data['products'] = $this->products_model->get_products_and_category($this->uri->segment(4));
$config['base_url'] = base_url()."admin/products/manage/";
$config['total_rows'] = $this->db->get('products')->num_rows();
$config['per_page'] = 20;
$config['full_tag_open'] = '<div class="btn-group">';
$config['full_tag_close'] = '</div>';
$config['anchor_class'] = 'class="btn" ';
$config['cur_tag_open'] = '<div class="btn">';
$config['cur_tag_close'] = '</div>';
$config['uri_segment'] = 4;
$this->pagination->initialize($config);
$this->data['pagination'] = $this->pagination->create_links();
$this->template->build('admin/products/index', $this->data);
get_products_and_category($this->uri->segment(4))
正在运行的查询如下所示,
public function get_products_and_category($offset=0)
$this->db->select('products.product_id, products.product_title, products.product_created, products.parent_category, categories.category_id, categories.category_title')
->from('products')
->join('categories' , 'products.parent_category = categories.category_id', 'left')
->order_by('products.product_title', 'ASC')
->limit(25, $offset);
$query = $this->db->get();
return $query->result_array();
我的表格中有 25 个结果,我想每页显示 20 个,所以根据我的数学计算,分页类应该创建 2 个链接(第 1 页和第 2 页),第一页应该有 20 个结果,第二个应该有 4 个结果,但是我根本没有得到任何链接,我做错了吗?
【问题讨论】:
我假设您在模板中回显数据['pagination'],对吧? 绝对 - 这对我来说真的很愚蠢 @sico87,人们有时会犯愚蠢的错误,这总是值得一问,尤其是因为我们看不到您的代码。 你能给我们看看 admin/products/index 吗? 只是想问一下为什么你有不同的分页 URL $config['base_url'] =...admin/products/manage 但是你加载的是不同的 $this->template->build ('admin/products/index') 在您的模板中? 【参考方案1】:LIMIT 子句可用于限制 SELECT 语句返回的行数。
现在您有 25 个结果,并且您将查询限制为返回 25 个结果,因此您的分页可能无法正常工作。
尝试在查询中传递 $config[per_page]
$this->data['products'] = $this->products_model->get_products_and_category($config['per_page'],$this->uri->segment(4));
然后在查询中(注意我们将per_page变量传递给limit())
public function get_products_and_category($num, $offset=0)
$this->db->select('products.product_id, products.product_title, products.product_created, products.parent_category, categories.category_id, categories.category_title')
->from('products')
->join('categories' , 'products.parent_category = categories.category_id', 'left')
->order_by('products.product_title', 'ASC')
->limit($num, $offset); // Here we pass the per_page var
$query = $this->db->get();
return $query->result_array();
希望对你有帮助
【讨论】:
我不相信这会影响分页的创建。分页库正在传递参数,总共有 25 行,一页将显示 20 个项目。因此,无论查询结果如何,它都应该产生 2 个锚点。该库与查询结果无关。【参考方案2】:Altrim 的答案非常好。但为了符合 CodeIgniter,我建议改用它:
public function get_products_and_category($offset=0)
$this->db->select('products.product_id, products.product_title, products.product_created, products.parent_category, categories.category_id, categories.category_title')
->from('products')
->join('categories' , 'products.parent_category = categories.category_id', 'left')
->order_by('products.product_title', 'ASC')
->limit($this->per_page, $offset); // Here we pass the per_page var
$query = $this->db->get();
return $query->result_array();
你已经在$config['per_page'] = 20;
中定义了per_page
由于$this->pagination->initialize($config);
在$this->$key = $value
中转换$key (per_page) => $value (20)
在initialize
函数中。
【讨论】:
以上是关于Codeigniter 分页不呈现分页链接的主要内容,如果未能解决你的问题,请参考以下文章