如何在Grails中分页?

时间:2019-02-08 12:56:30

标签: java grails pagination gorm

我是grails的新手,我正在尝试在应用程序中实现分页。 我已经按照文档中的示例进行了操作,但是似乎没有任何反应,它无法呈现页面导航按钮。这是示例代码:

def transaction = DataEntry.findAll() as List
    render(model: [transactions: transaction, total: transaction.count ], view: "/Transactions/verify")

然后在我看来,我已经提出了:

<g:each var="transaction" in="${transactions}">
    <h1>${transaction.sendersName}</h1>
</g:each>

<g:paginate next="Forward"
            prev="Back"
            maxsteps="1" 
            controller="approvedTransaction"
            action="index" 
            total="${total}" />

任何帮助将不胜感激!

1 个答案:

答案 0 :(得分:1)

检查此示例

域类:

class DataEntry{
    String sendersName
}

控制器:

class TransactionsController {
    def list() {
        [data: DataEntry.list(params), dataEntryCount: DataEntry.count()]
    }
}

邮政编码:

<g:paginate controller="transactions" action="list" total="${dataEntryCount}" />

OR

<g:paginate next="Forward" prev="Back"
            maxsteps="0" controller="transactions"
            action="list" total="${dataEntryCount}" />

有关更多详细信息,请参阅documentation