我有这样的方法

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变量中?

最佳答案

这不是吗?

def shadeIdsForAColor = ColorShades.getList(colorid as long).shadeId

09-05 16:12