這篇文章將為大家詳細(xì)講解有關(guān)ThinkPHP6自定義分頁的方法,小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,希望大家閱讀完這篇文章后可以有所收獲。
網(wǎng)站建設(shè)哪家好,找創(chuàng)新互聯(lián)建站!專注于網(wǎng)頁設(shè)計(jì)、網(wǎng)站建設(shè)、微信開發(fā)、成都小程序開發(fā)、集團(tuán)企業(yè)網(wǎng)站建設(shè)等服務(wù)項(xiàng)目。為回饋新老客戶創(chuàng)新互聯(lián)還提供了紫陽免費(fèi)建站歡迎大家使用!
ThinkPHP6.0給我們預(yù)定義了paginate分頁類,幫助我們快速分頁,但是ThinkPHP6提供的分頁的樣式并不是我們想要的,需要我們自己擴(kuò)展分頁類,具體實(shí)現(xiàn)方法:
首先我們?nèi)?fù)制一份官方的寫好的分頁類,并在此基礎(chǔ)上進(jìn)行修改,具體的路徑在vendor/topthink/think-orm/src/paginator/driver/Bootstrap.php,然后在app/common/Bootstrap.php粘貼。
修改app/provider.php服務(wù)提供者,修改默認(rèn)的分頁驅(qū)動(dòng)為我們的驅(qū)動(dòng)。
Request::class, 'think\exception\Handle' => ExceptionHandle::class, 'think\Paginator' => 'app\common\Bootstrap' ];
閱讀app/common/Bootstrap.php代碼,在此基礎(chǔ)上修改。以下是官方提供的分頁代碼vendor/topthink/think-orm/src/paginator/driver/Bootstrap.php
// +---------------------------------------------------------------------- namespace think\paginator\driver; use think\Paginator; /** * Bootstrap 分頁驅(qū)動(dòng) */ class Bootstrap extends Paginator { /** * 上一頁按鈕 * @param string $text * @return string */ protected function getPreviousButton(string $text = "«"): string { if ($this->currentPage() <= 1) { return $this->getDisabledTextWrapper($text); } $url = $this->url( $this->currentPage() - 1 ); return $this->getPageLinkWrapper($url, $text); } /** * 下一頁按鈕 * @param string $text * @return string */ protected function getNextButton(string $text = '»'): string { if (!$this->hasMore) { return $this->getDisabledTextWrapper($text); } $url = $this->url($this->currentPage() + 1); return $this->getPageLinkWrapper($url, $text); } /** * 頁碼按鈕 * @return string */ protected function getLinks(): string { if ($this->simple) { return ''; } $block = [ 'first' => null, 'slider' => null, 'last' => null, ]; $side = 3; $window = $side * 2; if ($this->lastPage < $window + 6) { $block['first'] = $this->getUrlRange(1, $this->lastPage); } elseif ($this->currentPage <= $window) { $block['first'] = $this->getUrlRange(1, $window + 2); $block['last'] = $this->getUrlRange($this->lastPage - 1, $this->lastPage); } elseif ($this->currentPage > ($this->lastPage - $window)) { $block['first'] = $this->getUrlRange(1, 2); $block['last'] = $this->getUrlRange($this->lastPage - ($window + 2), $this->lastPage); } else { $block['first'] = $this->getUrlRange(1, 2); $block['slider'] = $this->getUrlRange($this->currentPage - $side, $this->currentPage + $side); $block['last'] = $this->getUrlRange($this->lastPage - 1, $this->lastPage); } $html = ''; if (is_array($block['first'])) { $html .= $this->getUrlLinks($block['first']); } if (is_array($block['slider'])) { $html .= $this->getDots(); $html .= $this->getUrlLinks($block['slider']); } if (is_array($block['last'])) { $html .= $this->getDots(); $html .= $this->getUrlLinks($block['last']); } return $html; } /** * 渲染分頁html * @return mixed */ public function render() { if ($this->hasPages()) { if ($this->simple) { return sprintf( '
例如簡單修改上一頁下一頁為中文漢字,修改以下地方。
/** * 上一頁按鈕 * @param string $text * @return string */ protected function getPreviousButton(string $text = "上一頁"): string { if ($this->currentPage() <= 1) { return $this->getDisabledTextWrapper($text); } $url = $this->url( $this->currentPage() - 1 ); return $this->getPageLinkWrapper($url, $text); } /** * 下一頁按鈕 * @param string $text * @return string */ protected function getNextButton(string $text = '下一頁'): string { if (!$this->hasMore) { return $this->getDisabledTextWrapper($text); } $url = $this->url($this->currentPage() + 1); return $this->getPageLinkWrapper($url, $text); }
然后根據(jù)自己的業(yè)務(wù)需求進(jìn)行修改!
關(guān)于“ThinkPHP6自定義分頁的方法”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,使各位可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),請(qǐng)把它分享出去讓更多的人看到。