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

发布于 2024-08-10 17:20:04 字数 471 浏览 4 评论 0原文

这在 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 ${ ... } 并得到正确评估/扩展。我缺少什么?

This works as expected in a GSP-page:

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

But when adding a collect statement the code breaks ..

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

with

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

I was under the impression that any valid Groovy code could be placed in a GString ${ ... } and being correctly evaluated/expanded. What am I missing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

埋情葬爱 2024-08-17 17:20:04

或者,您可以使用展开运算符

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

Alternatively, you can use the spread operator:

<td>${Foo.findAllByBar(bar)*.name}</td>
万人眼中万个我 2024-08-17 17:20:04

GSP 解析器不喜欢 ${...} 块中的 }。试试这个:

<%= Foo.findAllByBar(bar).collect { it.name } %>

The GSP parser doesn't like } within the ${...} block. Try this one:

<%= Foo.findAllByBar(bar).collect { it.name } %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文