我花了一些时间,但无法弄清楚出了什么问题。我正在使用 CodeIgniter 2.1.0。
所以基本上是这样的:
我的分页设置:
$config['base_url'] = base_url() . '/stores/';
$config['total_rows'] = $this->stores_model->getTotalRows();
$config['per_page'] = 20; //display 20 rows per page
$config['num_links'] = 10; //display 10 pagination links
$config['uri_segment'] = 2;
$config['full_tag_open'] = '<div id="pagination">';
$config['full_tag_close'] = '</div>';
$this->pagination->initialize($config);
我从控制器获取这样的数据块。这也有效。
$data['stores'] = $this->stores_model->getChunks($config['per_page'], $this->uri->segment(2));
我的视图页面有:
<?php echo $this->pagination->create_links(); ?>
现在一切正常。起初显示了 10 个分页链接,但是当我单击链接 8、9 或 10 等时,分页链接会膨胀。它现在显示链接 1 到 20。这是为什么呢?这可能是非常简单的事情,但似乎无法弄清楚。我期待分页链接类型的滚动,但仅显示 10 个链接,因为我在 config.xml 中设置。
谢谢并恭祝安康
迪帕克