求助! 关于WEB分页

hellsam · · 2029 次点击
<a href="/user/candy4dmu" title="@candy4dmu">@candy4dmu</a> 我用以下测试方法有错误 不知道 是不是没有写对 ,还有 //Paginator *Paginator //这里有问题 这个Paginator 函数有参数的 先注释了 不知道怎么弄 ~~~ type User_list struct { Uid int Email string Password string Tel string Regip string } type DataTest struct { Content []*User_list //Paginator *Paginator //这里有问题 这个Paginator 函数有参数的 先注释了 不知道怎么弄 Totals int } user := &amp;DataTest{} //&amp;user.Uid, &amp;user.Email, &amp;user.Password, &amp;user.Tel, &amp;user.Regip if err2 := rows.Scan(&amp;user.Content[0].Uid, &amp;user.Content[0].Email, &amp;user.Content[1].Password, &amp;user.Content[2].Tel, &amp;user.Content[3].Regip); err2 != nil { checkerrlog.CheckErrLog(&#34;遍历错误&#34;, err2) return } ~~~
#13
更多评论
你在查DB的时候加上 offset 和 limit 参数。 然后前端给你传 page , page就是你的 offset, limit 可以自己决定展示多少个。
#1
<a href="/user/momaek" title="@momaek">@momaek</a> ~~~ 上面代码返回出去的是 // 切片数据 data := make([]*User, 0) 但是下面帖子 https://studygolang.com/articles/5689 返回的是MAP 这里我纳闷 不懂如何一起丢出去到HTML 希望帮帮忙 帮改改,,我测试一天了, 实在搞不定才上论坛求助的 ~~~
#2