1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-04 10:32:46 +08:00

Compare commits

...

3 Commits

4 changed files with 16 additions and 7 deletions

View File

@ -1,4 +1,3 @@
<div align=center>
<img src="https://goframe.org/img/logo_full.png" width="300" alt="goframe gf logo"/>
@ -24,10 +23,12 @@ A powerful framework for faster, easier, and more efficient project development.
# Documentation
- GoFrame Official Site: [https://goframe.org](https://goframe.org)
- GoFrame Official Site(en): [https://goframe.org/en](https://goframe.org/en)
- GoFrame Mirror Site(中文): [https://goframe.org.cn](https://goframe.org.cn)
- GoFrame Mirror Site(github pages): [https://pages.goframe.org](https://pages.goframe.org)
- Official Site: [https://goframe.org](https://goframe.org)
- Official Site(en): [https://goframe.org/en](https://goframe.org/en)
- Official Mirror Site:
- [Mainland China](https://goframe.org.cn)
- [Github Pages](https://pages.goframe.org)
- [Offline Docs](https://github.com/gogf/goframe.org-pdf/releases)
- GoDoc API: [https://pkg.go.dev/github.com/gogf/gf/v2](https://pkg.go.dev/github.com/gogf/gf/v2)

@ -1 +1 @@
Subproject commit b57e4575ce971e6a6e581b1de0e77eccf61705c4
Subproject commit f15e0c1978935dbe44ae6a7b8fe91de53abf1beb

View File

@ -17,10 +17,12 @@ import (
// GetPage creates and returns the pagination object for given `totalSize` and `pageSize`.
// NOTE THAT the page parameter name from clients is constantly defined as gpage.DefaultPageName
// for simplification and convenience.
//
// Deprecated: wrap this pagination html content in business layer.
func (r *Request) GetPage(totalSize, pageSize int) *gpage.Page {
// It must have Router object attribute.
if r.Router == nil {
panic("Router object not found")
panic("router object not found")
}
var (
url = *r.URL

View File

@ -5,6 +5,8 @@
// You can obtain one at https://github.com/gogf/gf.
// Package gpage provides useful paging functionality for web pages.
//
// Deprecated: wrap this pagination html content in business layer.
package gpage
import (
@ -18,6 +20,8 @@ import (
// Page is the pagination implementer.
// All the attributes are public, you can change them when necessary.
//
// Deprecated: wrap this pagination html content in business layer.
type Page struct {
TotalSize int // Total size.
TotalPage int // Total page, which is automatically calculated.
@ -48,6 +52,8 @@ const (
// /user/list/{.page}, /user/list/{.page}.html, /user/list?page={.page}&type=1, etc.
// The build-in variable in `urlTemplate` "{.page}" specifies the page number, which will be replaced by certain
// page number when producing.
//
// Deprecated: wrap this pagination html content in business layer.
func New(totalSize, pageSize, currentPage int, urlTemplate string) *Page {
p := &Page{
LinkStyle: "GPageLink",