如何删除«当我在当前的分页时,还»如果我在使用cakephp 3的最后一页分页

时间:2018-01-12 04:09:04

标签: cakephp pagination cakephp-3.0

enter image description here

我想删除<<因为我仍然处于分页的根源。

我有这个index.ctp,我把分页

<div class="paginator">
        <ul class="pagination">
            <?= $this->Paginator->prev('< ' . __('previous')) ?>
            <?= $this->Paginator->numbers() ?>
            <?= $this->Paginator->next(__('next') . ' >') ?>
        </ul>
        <p><?= $this->Paginator->counter() ?></p>
</div>

这是我在控制器索引方法中的代码

public function index()
{
  $website=  $this->set('websites', $this->paginate());
  $this->set('website', $website);
  $this->set('_serialize', ['website']);
}

这也发生在我想删除的最后一个分页&gt;&gt;

enter image description here

1 个答案:

答案 0 :(得分:2)

您可以更改分页器组件使用的模板

有很多方法(例如,按照here解释的文件加载)

或者您可以按照here所解释的那样随时更改:

$this->Paginator->setTemplates([
    'nextDisabled' => '',
    'prevDisabled' => '',
]);