gpt4 book ai didi

java - 如何使用grails分页

转载 作者:搜寻专家 更新时间:2023-11-01 02:25:54 24 4
gpt4 key购买 nike

我是 grails 的新手,我尝试使用 grails 文档中的 grails 分页标签,我的 index.gsp 中有一个搜索表单

我不知道如何传递 params.max 和 params.offset我只使用一个 Action 索引

我有一个索引操作,其中包含列出一些书籍的查询:

params.max = 10
params.offset = 0
def author=params.author // i get the input search params
def max = 10
def offset = 0
if(params.max){
max = params.max
}
if(params.offset){
offset = params.offset
}

def bookPagin=Book.createCriteria().list {
eq("author", author)}
maxResults(max)
firstResult(offset )
}

这是我的 index.gsp 中的分页标签:

 <g:paginate controller="displayBook" action="index" total="${bookPagin.size()}" params="[author:author]"/>

现在这段代码显示前 10 个结果,但是当我点击第二页时尽管我在 GET 请求中传递作者参数,但它不接受输入作者参数,还有其他解决方案吗?

最佳答案

下面是我会怎么做...

def searchString = "${params.author}%"
def searchResults = Book.findAllByAuthorLike(searchString, params) // max, offset automatically handled
def total = Book.countByAuthorLike(searchString)
render (model:[searchResults: searchResults, total: total])

在您的 GSP 中,使用以下方法迭代您的 searchResults:

<g:each var="book" in="${searchResults}">...

然后包括:

 <g:paginate controller="displayBook" action="index" total="${total}"/>

关于java - 如何使用grails分页,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22957898/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com