内容简介:今天来说下使用gobox中的分页操作分页也是我们开发时的一个常见需求,gobox中提供了page包做这个事情程序输出:
今天来说下使用gobox中的分页操作
说明
分页也是我们开发时的一个常见需求,gobox中提供了page包做这个事情
用法示例
package main import ( "github.com/goinbox/page" "fmt" ) func main() { po, err := page.NewPageObj(2, 15, 2) if err != nil { fmt.Println(err) return } fmt.Println("current pageObj is: ", po) fmt.Println("iterate: ") po.Rewind() fmt.Println(po) for po.Next() == nil { fmt.Println(po) } }
程序输出:
current pageObj is: &{2 15 8 2 2} iterate: &{1 15 8 2 0} &{2 15 8 2 2} &{3 15 8 2 4} &{4 15 8 2 6} &{5 15 8 2 8} &{6 15 8 2 10} &{7 15 8 2 12} &{8 15 8 1 14}
欢迎大家使用,使用中有遇到问题随时反馈,我们会尽快响应,谢谢!
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:- JavaScript骚操作之操作符
- Go 语言操作 MySQL 之 事务操作
- C# 数据操作系列 - 1. SQL基础操作
- Vim 跨行操作与 Ex 命令操作范围
- 并发环境下,先操作数据库还是先操作缓存?
- 关于HBase Shell基本操作的表操作示例
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Understanding Computation
Tom Stuart / O'Reilly Media / 2013-6-3 / USD 39.99
Finally, you can learn computation theory and programming language design in an engaging, practical way. Understanding Computation explains theoretical computer science in a context you'll recognize, ......一起来看看 《Understanding Computation》 这本书的介绍吧!