文件名称:pagination:带有HTML支持,可轻松进行分页
文件大小:7KB
文件格式:ZIP
更新时间:2024-05-29 12:01:23
Go
分页 分页是提供分页的简单包装。 使用html/template包具有HTML支持。 安装 使用go get安装。 $ go get github.com/SayonAB/pagination 然后将其导入您的项目中。 import "github.com/SayonAB/pagination" 用法 创建基本分页并检查当前页面的偏移量 numPosts := db . Posts (). Count () postsPerPage := 25 currentPage := request . Query (). Int ( "page" ) p := pagination . New ( numPosts , postsPerPage , currentPage ) fmt . Printf ( "The current offset is: %d \n " , p . Offse
【文件预览】:
pagination-master
----README.md(2KB)
----html.go(1KB)
----doc.go(195B)
----LICENSE(1KB)
----CONTRIBUTING.md(699B)
----html_test.go(1KB)
----.travis.yml(212B)
----pagination_test.go(4KB)
----pagination.go(3KB)
----example_test.go(297B)