0

我花了一些时间,但无法弄清楚出了什么问题。我正在使用 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 中设置。

谢谢并恭祝安康

迪帕克

4

1 回答 1

0

现在我明白了

$config['num_links'] 让我困惑了一段时间。

这意味着要在当前链接的两侧(上一个和下一个)显示的链接数。

ie. (show prev 10 links from current) <----- [current page] -----> (show next 10 links from current)

将其设置为 5 解决了问题。现在我按预期总共显示了大约 11 个链接。

再次感谢

迪帕克

于 2012-04-27T03:00:00.143 回答