0

我正在尝试调用 PagedResultList 的构造函数:

def result = new PagedResultList(list: q, totalCount:q.size())

其中 q 是我的 ArrayList 但我收到一条错误消息,提示无法解析类。我以为 PagedResultList 类在 grails 库中,为什么会出现此错误。我正在运行 grails 1.3.7

4

1 回答 1

0

您需要导入 - 除了 Groovy 支持的之外,Grails 中没有额外的自动导入的包或类:

import grails.orm.PagedResultList

由于该类具有真正的参数化构造函数,因此您的地图构造函数也不起作用;你需要这样做:

def result = new PagedResultList(q, q.size())
于 2012-08-16T17:56:08.340 回答