作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
正如我在另一个 question 的回答中注意到的那样在 GORM 中测试 finder 方法时存在一些问题。
我想从 Something
获取所有对象并支持排序和分页,所以我写了这个:
SomethingListVO findAllSomethings(int offset = 0, int limit = 50) {
def somethingCount = Something.count()
def somethings = Something.findAll([max: limit,
offset:offset,
sort: "number",
order: "asc"])
return new SomethingListVO(somethingCount,somethings)
}
SELECT * FROM Something
这样的查询你的测试会失败。
最佳答案
只需为您的查询执行此操作
Something.list([max: limit,offset:offset,sort: "number",order: "asc"])
关于Grails:有没有办法让 findAll() 没有查询但有分页和排序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3760090/
我是一名优秀的程序员,十分优秀!