php框架laravel插件pagination实现自定义分页,laravelpaginationlaravel 的分页很方便,其实扩展起来也挺容易的,下面就来做个示例,扩展一下 paginate() 和 simplepaginate() 方法,来实现我们自定义分页样式,比如显示 上一页 和 下一页 ,而不是 《 和 》 ,当然扩展的方法掌握了你就可以肆无忌惮的扩展一个你想要的分页了,比如跳转到某一页,分页显示一共多少记录,当前显示的记录范围等等巴拉巴拉的。。。
5.1和5.2应该是同样的方法,我这里用的是5.2的版本。文档告诉我们 paginator 对应于查询语句构造器和 eloquent 的 simplepaginate 方法,而 lengthawarepaginator 则等同于 paginate 方法。那我们还是来看下源码,具体这个 paginate 是如何实现 render() 的,
illuminate/pagination/lengthawarepaginator.php
render(); }......}
render() 中传入的是一个 presenter 的实例,并调用这个实例化的 render 方法来实现分页的显示的。如果没有则调用 bootstrapthreepresenter 中 render() 的,来看看 bootstrapthreepresenter 是干嘛的
illuminate/pagination/bootstrapthreepresenter.php
paginator = $paginator; $this->window = is_null($window) ? urlwindow::make($paginator) : $window->get(); } /** * determine if the underlying paginator being presented has pages to show. * * @return bool */ public function haspages() { return $this->paginator->haspages(); } /** * convert the url window into bootstrap html. * * @return \illuminate\support\htmlstring */ public function render() { if ($this->haspages()) { return new htmlstring(sprintf( '%s %s %s', $this->getpreviousbutton(), $this->getlinks(), $this->getnextbutton() )); } return ''; }......}
这里可以看到 bootstrapthreepresenter 实现了 presentercontract 的接口, render() 才是分页显示的真正实现,构造方法中的第一个参数 paginatorcontract 其实就是一个 paginator 我们继续看下 presentercontract 也就是 presenter 接口中定义了什么方法需要实现
illuminate/contracts/pagination/presenter.php
window = is_null($window) ? urlwindow::make($paginator) : $window->get(); } /** * determine if the underlying paginator being presented has pages to show. * * @return bool */ public function haspages() { return $this->paginator->haspages(); } /** * convert the url window into bootstrap html. * * @return \illuminate\support\htmlstring */ public function render() { if ($this->haspages()) { return new htmlstring(sprintf( '%s %s %s', $this->getpreviousbutton('上一页'),//具体实现可以查看该方法 $this->getlinks(), $this->getnextbutton('下一页')//具体实现可以查看该方法 )); } return ''; } /** * get html wrapper for an available page link. * * @param string $url * @param int $page * @param string|null $rel * @return string */ protected function getavailablepagewrapper($url, $page, $rel = null) { $rel = is_null($rel) ? '' : ' rel=' . $rel . ''; return '' . $page . ''; } /** * get html wrapper for disabled text. * * @param string $text * @return string */ protected function getdisabledtextwrapper($text) { return '' . $text . ''; } /** * get html wrapper for active text. * * @param string $text * @return string */ protected function getactivepagewrapper($text) { return '' . $text . ''; } /** * get a pagination dot element. * * @return string */ protected function getdots() { return $this->getdisabledtextwrapper('...'); } /** * get the current page from the paginator. * * @return int */ protected function currentpage() { return $this->paginator->currentpage(); } /** * get the last page from the paginator. * * @return int */ protected function lastpage() { return $this->paginator->lastpage(); }}
就这么简单,主要就是 render() 方法,如果项目中需要修改分页样式,或者添加分页跳转之类的需求只要重写其中的各项显示的方法中的html元素就可以了,很灵活,在blade模板中也需要修该,比如我们的 paginator 叫 $users ,默认的分页显示是这样的:
{!! $users->render() !!}
修改成我们自定义后的分页显示:
{!! with(new \app\foundations\pagination\customerpresenter($categories))->render() !!}
好了,这样在页面应该就可以看到分页链接中含有 上一页和下一页加数字的样式了。
那么如果扩展simplepaginate?其实很简单,只要继承刚才的 customerpresenter ,实现 haspages 和 render ,至于为什么可以按照我上面查看源码的方式看一下就知道了,比如我们改成上一篇和下一篇
新建app\foundations\pagination\customersimplepresenter.php
paginator = $paginator; } /** * determine if the underlying paginator being presented has pages to show. * * @return bool */ public function haspages() { return $this->paginator->haspages() && count($this->paginator->items()) > 0; } /** * convert the url window into bootstrap html. * * @return \illuminate\support\htmlstring */ public function render() { if ($this->haspages()) { return new htmlstring(sprintf( '%s %s', $this->getpreviousbutton('上一篇'), $this->getnextbutton('下一篇') )); } return ''; }}
分页显示:
{!! with(new \app\foundations\pagination\customersimplepresenter($categories))->render() !!}
方法就是这个方法,具体修改按照自己需求重写其中对应的显示html元素的方法就可以了。
转载请注明:转载自 ryan是菜鸟 | lnmp技术栈笔记
以上就是本文的全部内容,希望对大家学习php程序设计有所帮助。
http://www.bkjia.com/phpjc/1133117.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/1133117.htmltecharticlephp框架laravel插件pagination实现自定义分页,laravelpagination laravel 的分页很方便,其实扩展起来也挺容易的,下面就来做个示例,扩展一下 p...