5

我已阅读有关 Stackoverflow 的所有问题,但没有看到该问题的明确答案。我目前正在使用 codeigniter 分页库来生成使用限制和偏移量的分页链接:

$config['base_url'] = base_url() . 'explore/featured/index/';
    $config['total_rows'] = $this->Projects_model->get_featured_count();//Count featured projects
    $config['per_page'] = 12;
    $config['uri_segment'] = 4;
    $config['display_pages'] = FALSE;
    $config['next_link'] = 'Older →';
    $config['prev_link'] = '← Newer';
    $this->pagination->initialize($config);
    $limit = $config['per_page'];
    $offset = $this->uri->segment(4);

    $data['pagination'] = $this->pagination->create_links();

    $data['projects'] = $this->Projects_model->get_featured($limit, $offset); //get featured projects from database

上面的代码限制了我的查询的输出值,并使用了我的第 4 个 URI 段中包含的偏移量。

如何将以下代码更改为页码???似乎是不可能的,因为我将不再能够在我的网址中使用偏移量。

4

4 回答 4

18

在某些时候,CI 更新了他们的分页库以(最终)适应这个:

$config['use_page_numbers'] = TRUE;

默认情况下,URI 段将使用您正在分页的项目的起始索引。如果您希望显示实际页码,请将其设置为 TRUE。

如果您使用的版本没有此功能并且无法更新整个 CI 安装,您应该可以直接放入最新的分页库。

要计算您的数据库偏移量,请使用$limit * $page_number其中“page_number”是您的 URL 中的值(在您的情况下为第 4 段)。

于 2012-07-13T23:43:27.103 回答
7

$limit * $page_number上面提到的没有返回真正的偏移量作为起点,并且在页码为 1 时产生了问题,因为此时偏移量必须为 0。这对我有用:

$offset = ($page_number  == 1) ? 0 : ($page_number * $config['per_page']) - $config['per_page'];
于 2014-01-05T20:24:58.530 回答
4

只需使用:

$offset = ($this->uri->segment(4)) ? $this->uri->segment(4) : 1;
$data['projects'] = $this->Projects_model->get_featured($limit, $limit*($offset-1));
于 2017-11-21T06:24:10.423 回答
-1
$page_num = $this->uri->segment(1);
$offset = ($page_num  == NULL) ? 0 : 
          ($page_num * $config['per_page']) - $config['per_page'];
于 2015-03-01T11:08:15.673 回答