Freemarker“Collection.contains”功能性

发布于 2024-09-29 11:23:26 字数 120 浏览 5 评论 0原文

从我的 java 代码中,我返回一个 Set。视图需要检查 Set 是否包含特定字符串。我找不到任何有关 Freemarker 如何处理此问题的文档。
有什么想法吗?

From my java code I'm returning a Set<String>. The view needs to check if the Set contains a specific string.. I can't find any docs on how Freemarker can handle this.
Any idea?

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

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

发布评论

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

评论(1

黎夕旧梦 2024-10-06 11:23:26

您可以使用seq_contains。您需要 FreeMarker 2.3.1

${x?seq_contains("blue")?string("yes", "no")}

如果序列包含“blue”,这将输出 yes

从评论中,如果您希望在 if 语句中使用此内容,

<#if x?seq_contains("myString")>

这是关于它的文档 Built-序列的ins

You can use seq_contains. You need FreeMarker 2.3.1

${x?seq_contains("blue")?string("yes", "no")}

This will output yes if the sequence contains "blue".

And from the comments, if you want this in an if statement

<#if x?seq_contains("myString")>

Here is the doco about it Built-ins for sequences

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