ThinkPHP6.0使用自定义分页类 重写paginate页码样式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ThinkPHP6.0使用自定义分页类 重写paginate页码样式相关的知识,希望对你有一定的参考价值。

参考技术A Thinkphp6.0给我们预定义了paginate分页类,帮助我们快速分页,但是ThinkPHP6提供的分页的样式并不是我们想要的,需要我们自己扩展分页类,看看具体如何实现吧!

例如简单修改上一页下一页为中文汉字,修改以下地方。

然后根据自己的业务需求进行修改!

再看thinkphp5分页类使用

之前使用tp5的分页paginate类时只用到了第一个参数,也就是每页显示多少行

今天又仔细看了下手册和paginate类,发现paginate可传入的参数有很多,可以满足更多需求

比如可以指定分页的数据,可以使用重写的分页类等。。。

下面是tp5.1的分页类

 /**
     * 分页查询
     * @access public
     * @param  int|array $listRows 每页数量 数组表示配置参数
     * @param  int|bool  $simple   是否简洁模式或者总记录数
     * @param  array     $config   配置参数
     *                            page:当前页,
     *                            path:url路径,
     *                            query:url额外参数,
     *                            fragment:url锚点,
     *                            var_page:分页变量,
     *                            list_rows:每页数量
     *                            type:分页类名
     * @return \think\Paginator
     * @throws DbException
     */
    public function paginate($listRows = null, $simple = false, $config = [])
    {
        if (is_int($simple)) {
            $total  = $simple;
            $simple = false;
        }

        $paginate = Container::get(‘config‘)->pull(‘paginate‘);

        if (is_array($listRows)) {
            $config   = array_merge($paginate, $listRows);
            $listRows = $config[‘list_rows‘];
        } else {
            $config   = array_merge($paginate, $config);
            $listRows = $listRows ?: $config[‘list_rows‘];
        }

        /** @var Paginator $class */
        $class = false !== strpos($config[‘type‘], ‘\\‘) ? $config[‘type‘] : ‘\\think\\paginator\\driver\\‘ . ucwords($config[‘type‘]);
        $page  = isset($config[‘page‘]) ? (int) $config[‘page‘] : call_user_func([
            $class,
            ‘getCurrentPage‘,
        ], $config[‘var_page‘]);

        $page = $page < 1 ? 1 : $page;

        $config[‘path‘] = isset($config[‘path‘]) ? $config[‘path‘] : call_user_func([$class, ‘getCurrentPath‘]);

        if (!isset($total) && !$simple) {
            $options = $this->getOptions();

            unset($this->options[‘order‘], $this->options[‘limit‘], $this->options[‘page‘], $this->options[‘field‘]);

            $bind    = $this->bind;
            $total   = $this->count();
            $results = $this->options($options)->bind($bind)->page($page, $listRows)->select();
        } elseif ($simple) {
            $results = $this->limit(($page - 1) * $listRows, $listRows + 1)->select();
            $total   = null;
        } else {
            $results = $this->page($page, $listRows)->select();
        }

        $this->removeOption(‘limit‘);
        $this->removeOption(‘page‘);

        return $class::make($results, $listRows, $page, $total, $simple, $config);
    }

 

以上是关于ThinkPHP6.0使用自定义分页类 重写paginate页码样式的主要内容,如果未能解决你的问题,请参考以下文章

Laravel --实战篇 (自定义分页类)

codeigniter分页类中的自定义查询

PHP分页类,支持自定义样式,中间5页

php 数据分页类,可自定义多个分页样式

python全栈系列之---自定义分页类

python---django中自带分页类使用