我已經一個星期試圖解決這一問題分頁,但不會有好結果,Grails的分頁不工作
我有這個在我的控制器
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>
,我什麼都試過,但沒有結果總是顯示在視圖中的一整套歷史。
可能重複[Grails的分頁不起作用(http://stackoverflow.com/questions/17068081/grails-paginate-doesnt-work) – doelleri