Documentation ¶
Index ¶
Constants ¶
View Source
const ( // DefaultPageSize 默认分页大小 DefaultPageSize int = 10 // MaxPageSize 最大分页大小 MaxPageSize int = 5000 )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Page ¶
type Page struct { Page int `json:"page"` Size int `json:"size"` TotalRecords int `json:"totalRecords"` TotalPages int `json:"totalPages"` Items interface{} `json:"items"` }
Page 分页信息
func NewDefaultFromString ¶
NewDefaultFromString 从字符串中生成一个新的page cur 当前页,从1开始 size 分页大小 如果cur和size int 转换失败,分别转换成 defalult
func NewFromString ¶
NewFromString 从字符串中生成一个新的page cur 当前页,从1开始 size 分页大小 如果cur和size int 转换失败,分别转换成 defalult
func PagingPage ¶
PagingPage 从分页对象中获取当前页和页码
Click to show internal directories.
Click to hide internal directories.