如果我的行动中有此片段
for (c in AuthorList){
def bookCount = Book.countByName(c)
}
如何将bookCount
放入列表
答案 0 :(得分:1)
for
循环。 ;)
authorList.collect { Book.countByName( it ) }
应该提供您要查找的列表。
答案 1 :(得分:0)
尝试使用<<
def list = []
for (c in AuthorList){
def bookCount = Book.countByName(c)
list << bookCount
}