如何在 Grails Searchable 插件中设置搜索结果的大小

发布于 2024-11-05 05:47:04 字数 116 浏览 0 评论 0原文

对于我的应用程序,我使用 Grails Searchable 插件。默认情况下,搜索结果大小为每页 10 个结果。我怎样才能增加搜索结果的大小,因为我想在一页上显示所有结果而不是进行分页操作。请大家多多指教,不胜感激。

For my application I am using Grails Searchable plugin. By default the search result size is 10 results per page. How can I can increase the search result size because I want to show all the results on one page instead of doing paginating stuff. Please advise me, Appreciate it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

纸伞微斜 2024-11-12 05:47:04

看看: http://grails.org/Searchable+Plugin+-+Methods+-+搜索

您必须使用结果选项“every”。

// get all articles containing the term 'test'
def articles = Article.search(
    "test",
    [result: 'every']
)

have a look at: http://grails.org/Searchable+Plugin+-+Methods+-+search

you have to use the result option 'every'.

// get all articles containing the term 'test'
def articles = Article.search(
    "test",
    [result: 'every']
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文