< p>这是我的行动< / p>
<预><代码> def list(){
def max = params.max?:3
def offset = params.offset?:0
def taskList = Game.createCriteria()。list(params){
if(params.query){
ilike(" gameTitle","%$ {params.query}%")
println" here task"
}
订单(" gameTitle"," asc")
}
def total = userList.totalCount + taskList.totalCount
[totals:total,games:taskList,taskInstanceTotal:taskList.totalCount]
}
< /代码>< /预>
< p>这就是它的显示方式< / p>
< pre>< code>< g:each in =" $ {users}"状态=" I" VAR ="用户">
< h5 style =" padding-left:10px; margin-top:0px; margin-bottom:0px;"> $ {user.name}< / h5>
&LT /克:每个>
< g:paginate total =" $ {taskInstanceTotal}"最大=" 3" PARAMS =" $ {PARAMS}" />
< /代码>< /预>
< p>在调用控制器之后,最初显示所有结果的列表&当我点击分页按钮时,它似乎工作正常。我的问题是,在从控制器发送数据后,它无法正常显示< a href =" http://i.stack.imgur.com/DCMVp.png" rel =" nofollow">它会显示我的列表中的所有内容< / a>但是当点击分页按钮时,它似乎工作正常。< a href =" http://i.stack.imgur.com/8cgDo.png" rel =" nofollow">点击分页后< / a>。 < / p为H.