1

我有这样的方法

static getList (long colorid) {
     ColorShades.findAll 'from ColorShades where color.id = :colorid', [colorid: colorid]
}

我这样使用它:

def shadeIdsForAColor = ColorShades.getList(colorid as long)

问题

该方法返回一个ArrayList对象ColorShade,每个对象都有一个shadeId

我该怎么做才能将这些 id 作为整数列表放入shadeIdsForAColor变量中?

4

1 回答 1

0

这不行吗?

def shadeIdsForAColor = ColorShades.getList(colorid as long).shadeId
于 2013-02-20T15:41:03.433 回答