蛋糕PHP中的自定义分页

时间:2012-03-09 15:02:04

标签: php cakephp-2.0 paginator

我是cakePHP的初学者,我不想在cakePHP中创建自定义分页。

函数$paginator->numbers() ;它显示如下页码:

1 | 2 | 3 | 4 | ...

通过查看选项,有一些选项可以更改分隔符,添加一个样式css ..Etc的类。

我想要的是像我这样的分页:

1-20 21-40 41-60 61-80 ... >>

有人知道如何编码吗?

编辑:

我在app/View/Helper/

中创建了自定义分页器帮助器

我已将CustomPaginatorHelper添加到helpers的{​​{1}}这样的内容:

Controller

但我收到了这个错误:

public $helpers = array('CustomPaginator', 'Html', 'Form', 'Js');
似乎他不知道Fatal error: Class 'PaginatorHelper' not found in /Applications/MAMP/htdocs/QRCode/app/View/Helper/CustomPaginatorHelper.php on line 2 !!! 我应该在哪里添加我的自定义PaginatorHelper ??

NB:您的功能号码()将只显示分页的格式:1-20 21-40 ...等,但没有链接到我认为的页面:)

编辑2:

我已添加Paginator,我不再收到此错误。 现在我尝试像这样调用自定义分页器的App::set('PaginatorHelper','/View/Helper/');方法:

numbers()

但是我收到了这个错误:

$this->CustomPaginator->numbers(); 

此错误的来源是什么?我试图将我的customPaginatorHelper添加到我的Controller的$ helpers变量,但我仍然得到相同的错误;有任何想法吗 ?

提前致谢

5 个答案:

答案 0 :(得分:4)

这里要知道的关键是有一个paginator组件(在控制器中使用)和一个paginator helper(在视图中使用)。你正在使用的是PaginatorHelper类,它处理与分页相关的元素的渲染。

不幸的是,没有办法用PaginatorHelper做你想要达到的目标。如果您想这样做,最好的方法是扩展PaginatorHelper类并覆盖numbers()方法以返回您想要的内容。

我已经看过那个特殊的方法,遗憾的是它并不好 - 它超过100行!但是,我创建了一个继承PaginatorHelper并重写该方法的类。由于原始方法太长,所以复制和粘贴很多,因此我没有将它直接放在这个答案中。

您可以在此处查看:https://gist.github.com/2037902

您还需要将CustomPaginator添加到控制器中的帮助程序列表中。

答案 1 :(得分:1)

你可以在这里显示答案

Custom-Query-Pagination

您还可以在此处显示其他结果。

http://www.endyourif.com/custom-pagination-query-in-cakephp/

答案 2 :(得分:1)

回答Cake PHP中的自定义分页

如果底层数据库不支持SQL LIMIT语法,那么何时需要它的一个很好的例子。 IBM的DB2也是如此。您仍然可以通过向模型添加自定义查询来使用CakePHP分页。

如果您需要创建自定义查询以生成要分页的数据,则可以覆盖分页控制器逻辑使用的paginate()和paginateCount()模型方法。您还需要覆盖核心paginateCount(),此方法需要与Model :: find('count')相同的参数。下面的示例使用了一些Postgres特有的功能,因此请根据您使用的数据库进行相应调整。

感谢see if this helps

答案 3 :(得分:1)

我发现甚至可以更轻松地实现同样的目标。您会注意到PaginationHelper扩展了AppHelper。因此,如果您将任何函数从PaginatorHelper复制到AppHelper调用并从PaginationHelper调用它,它将以相同的方式运行,没有任何错误。

<强>用法

$numbers_config = array(
"before" => null,
"after" => null,
"separator" => "",
"tag" => "li"
);
echo $this->Paginator->customNumbers($numbers_config);

<强>代码

// /app/View/AppHelper.php

App::uses('Helper', 'View');

class AppHelper extends Helper {

    public function customNumbers($options = array()) {
        if ($options === true) {
            $options = array(
                'before' => ' | ', 'after' => ' | ', 'first' => 'first', 'last' => 'last'
            );
        }

        $defaults = array(
            'tag' => 'span', 'before' => null, 'after' => null, 'model' => $this->defaultModel(), 'class' => null,
            'modulus' => '8', 'separator' => ' | ', 'first' => null, 'last' => null, 'ellipsis' => '...',
            'currentClass' => 'current', 'currentTag' => null
        );
        $options += $defaults;

        $params = (array)$this->params($options['model']) + array('page' => 1);
        unset($options['model']);

        if ($params['pageCount'] <= 1) {
            return false;
        }

        extract($options);
        unset($options['tag'], $options['before'], $options['after'], $options['model'],
            $options['modulus'], $options['separator'], $options['first'], $options['last'],
            $options['ellipsis'], $options['class'], $options['currentClass'], $options['currentTag']
        );

        $out = '';

        if ($modulus && $params['pageCount'] > $modulus) {
            $half = intval($modulus / 2);
            $end = $params['page'] + $half;

            if ($end > $params['pageCount']) {
                $end = $params['pageCount'];
            }
            $start = $params['page'] - ($modulus - ($end - $params['page']));
            if ($start <= 1) {
                $start = 1;
                $end = $params['page'] + ($modulus - $params['page']) + 1;
            }

            if ($first && $start > 1) {
                $offset = ($start <= (int)$first) ? $start - 1 : $first;
                if ($offset < $start - 1) {
                    $out .= $this->first($offset, compact('tag', 'separator', 'ellipsis', 'class'));
                } else {
                    $out .= $this->first($offset, compact('tag', 'separator', 'class', 'ellipsis') + array('after' => $separator));
                }
            }

            $out .= $before;

            for ($i = $start; $i < $params['page']; $i++) {
                $out .= $this->Html->tag($tag, $this->link($i, array('page' => $i), $options), compact('class')) . $separator;
            }

            if ($class) {
                $currentClass .= ' ' . $class;
            }
            if ($currentTag) {
                $out .= $this->Html->tag($tag, $this->Html->tag($currentTag, $params['page']), array('class' => $currentClass));
            } else {
                $out .= $this->Html->tag($tag, "<a href='#'>".$params['page']."</a>", array('class' => $currentClass));
            }
            if ($i != $params['pageCount']) {
                $out .= $separator;
            }

            $start = $params['page'] + 1;
            for ($i = $start; $i < $end; $i++) {
                $out .= $this->Html->tag($tag, $this->link($i, array('page' => $i), $options), compact('class')) . $separator;
            }

            if ($end != $params['page']) {
                $out .= $this->Html->tag($tag, $this->link($i, array('page' => $end), $options), compact('class'));
            }

            $out .= $after;

            if ($last && $end < $params['pageCount']) {
                $offset = ($params['pageCount'] < $end + (int)$last) ? $params['pageCount'] - $end : $last;
                if ($offset <= $last && $params['pageCount'] - $end > $offset) {
                    $out .= $this->last($offset, compact('tag', 'separator', 'ellipsis', 'class'));
                } else {
                    $out .= $this->last($offset, compact('tag', 'separator', 'class', 'ellipsis') + array('before' => $separator));
                }
            }

        } else {
            $out .= $before;

            for ($i = 1; $i <= $params['pageCount']; $i++) {
                if ($i == $params['page']) {
                    if ($class) {
                        $currentClass .= ' ' . $class;
                    }
                    if ($currentTag) {
                        $out .= $this->Html->tag($tag, $this->Html->tag($currentTag, $i), array('class' => $currentClass));
                    } else {
                        $out .= $this->Html->tag($tag, $i, array('class' => $currentClass));
                    }
                } else {
                    $out .= $this->Html->tag($tag, $this->link($i, array('page' => $i), $options), compact('class'));
                }
                if ($i != $params['pageCount']) {
                    $out .= $separator;
                }
            }

            $out .= $after;
        }

        return $out;
    }

}

答案 4 :(得分:1)

我发现更简单的解决方案,无需自定义代码,并且将采用CakePHP的方式,可能无法在下面的CakePHP 2.0版本中工作,因为我检查了2.5 ...

对于Paginators number()方法,您始终可以覆盖其default array(),如:

$defaults = array(
            'tag' => 'span', 'before' => null, 'after' => null, 'model' => $this->defaultModel(), 'class' => null,
            'modulus' => '8', 'separator' => ' | ', 'first' => null, 'last' => null, 'ellipsis' => '...',
            'currentClass' => 'current', 'currentTag' => null
);

现在我们可以随时覆盖这些默认值,只需在options array()中使用这些属性,例如:

    $this->Paginator->numbers(
                              array(
                                'separator' => ' - ',
                                'after' => '',
                                'before' => ''
    ));