thinkphp6分頁自定義樣式

2021-10-07 09:48:54 字數 948 閱讀 6045

使用easyadmin框架

自己寫了乙個頁面和**,用不了框架的樣式了

thinkphp6使用分頁的時候使用的是預設的分頁樣式

看起來很不美觀 使用起來也不方便

這裡 給大家寫了乙個簡單的css樣式

/**

* @param string $text

* @return string

*/protected

function

getpreviousbutton

(string $text

="«"

): string

$url

=$this

->

url(

$this

->

currentpage()

-1);

return

$this

->

($url

,$text);

}/**

* @param string $text

* @return string

*/protected

function

getnextbutton

(string $text

='»'

): string

$url

=$this

->

url(

$this

->

currentpage()

+1);

return

$this

->

($url

,$text);

}

自定義的tp3 23分頁

分四個步驟 1,控制器 this m 是模型 count thi s m wh ere this m where this m wh ere map count p g etpa ge p getpage p getp age count,10 data thi s m wh ere this m ...

thinkphp自定義404頁面

使用emptycontroller empty方法。當我們使用thinkphp框架對外提供服務時,如果不採取特殊配置,當乙個請求沒有訪問到服務端資源,會直接返回404,並且由於thinkphp的特性,會返回乙個帶有thinkphp個性色彩的404頁面。這樣的頁面至少有兩點不太好 1 暴露了服務端的技...

thinkphp5自定義分頁樣式

1.在extend 目錄下建立page目錄,在page目錄中建立page.php檔案,將以下 放入檔案中 namespace page usethink paginator class page extends paginator else protected function prev else ...