CakePHP分页椭圆没有显示

时间:2014-05-13 09:22:53

标签: php cakephp pagination

共有11页,我正在使用modulus => 8,一次显示9个页码。

以下是代码:

echo $this->Paginator->numbers(
    array('modulus' => 8,
        'separator' => false,
        'before' => '',
        'after' => '',
        'tag' => 'li',
        'class' => false,
        'currentClass' => 'disabled',
        'currentTag' => 'a'
    )
);

问题是省略号...没有出现在分页编号中。我正在使用cakephp 2.4.xx,并且在文档中写了椭圆自动出现。

请指导我如何将...带入分页编号。

1 个答案:

答案 0 :(得分:2)

只有在第一次使用时才有效。或者'最后'设置为整数值。

即:

echo $this->Paginator->numbers(
    array('modulus' => 8,
        'separator' => false,
        'before' => '',
        'after' => '',
        'tag' => 'li',
        'class' => false,
        'currentClass' => 'disabled',
        'currentTag' => 'a',
        'first' => 3,
        'last' => 3,
    )
);