我的控制器以这样的数组返回结果:
render (template: 'show' , model: [changes: changes])
Show 是一个默认动作,而 changes 是一个使用 query( createCriteria
) 创建的数组。如何在我的index.gsp
页面中进行分页,该页面在 HTMl div 中显示结果?
我的问题:
控制器:
def list() {
[terminHistorie: changes, terminHistorieCount: changes.size()]
}
普惠制:
<g:paginate controller="terminHistorie" action="list" total="${terminHistorieCount}"/>
错误:标签 [paginate] 在 C:/Users/matejb/Documents/NetBeansProjects/gutmann/grails-app/views/terminHistory/index.gsp:309 处缺少必需的属性 [total]