Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将许多列表合并到 gsp 中的单个列表中。例如:
A 类有 B 类实例的列表
当我尝试使用表达式时:${a.findAll(some_condition).b}我正在获取 B 实例列表的列表
${a.findAll(some_condition).b}
我希望表达式返回一个列表,所有实例都b属于每个a满足some_condition
b
a
some_condition
你能试一下吗:
${a.findAll(some_condition).b.flatten()}
那应该会给你一个列表
${a.findAll(some_condition).b.flatten().unique()}
还应该删除重复项