gpt4 book ai didi

grails - 为什么 .collect() 在以下 GString 中不起作用?

转载 作者:行者123 更新时间:2023-12-02 09:25:37 24 4
gpt4 key购买 nike

这在 GSP 页面中按预期工作:

<td>${Foo.findAllByBar(bar)}</td>

但是当添加收集语句时,代码会中断..

<td>${Foo.findAllByBar(bar).collect { it.name }}</td>

Error 500: Could not parse script [...gsp]: startup failed,
...: 129: expecting '}', found ')'
@ line 129, column 196. 1 error`.

我的印象是任何有效的 Groovy 代码都可以放入 GString ${ ... } 中并被正确评估/扩展。我错过了什么?

最佳答案

或者,您可以使用 spread operator :

<td>${Foo.findAllByBar(bar)*.name}</td>

关于grails - 为什么 .collect() 在以下 GString 中不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1729175/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com