diff --git a/examples b/examples index b57e4575c..f15e0c197 160000 --- a/examples +++ b/examples @@ -1 +1 @@ -Subproject commit b57e4575ce971e6a6e581b1de0e77eccf61705c4 +Subproject commit f15e0c1978935dbe44ae6a7b8fe91de53abf1beb diff --git a/net/ghttp/ghttp_request_param_page.go b/net/ghttp/ghttp_request_param_page.go index 57721c96d..4cd366d42 100644 --- a/net/ghttp/ghttp_request_param_page.go +++ b/net/ghttp/ghttp_request_param_page.go @@ -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 diff --git a/util/gpage/gpage.go b/util/gpage/gpage.go index d434e3f63..adcb3eb73 100644 --- a/util/gpage/gpage.go +++ b/util/gpage/gpage.go @@ -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",