1

我已经一个星期试图解决这个分页问题,​​但没有好的结果,

我的控制器中有这个

    PatientController{
    def show(Long id) {
    def patientInstance = Patient.get(id)
    if (!patientInstance) {
        flash.message = message(code: 'default.not.found.message', args: [message(code: 'patient.label', default: 'Patient'), id])
        return
    }



    def historyInstance = History.findAllByPatient(patientInstance)
    def total = historyInstance.size()


    [historyInstance: historyInstance,patientInstance: patientInstance,historyInstanceTotal: total]


    }
}

我在视图上有这个代码

    <g:each in="${historyInstance}" var="historyInstances" status="i">
      ...
    </g:each>

    <div class="pagination">
        <g:paginate  total="${historyInstanceTotal}"/>
    </div>

我使用params, 上的最大值<g:paginate>,我尝试了所有方法,但没有结果,它总是在视图中显示整个历史记录。

4

1 回答 1

5

您需要将您的内容传递params给您正在使用的查找器,否则它将不知道如何分页。该<g:paginate>标签仅用于显示分页链接,并不实际执行分页。此外,total将需要使用 a countBy,因为结果集将仅限于当前页面的结果。

def historyInstance = History.findAllByPatient(patientInstance, params)
def total = History.countByPatient(patientInstance)
于 2013-07-23T18:44:53.230 回答