Freemarker“Collection.contains”功能性
从我的 java 代码中,我返回一个 Set
有什么想法吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
seq_contains
。您需要 FreeMarker 2.3.1如果序列包含“blue”,这将输出 yes。
从评论中,如果您希望在 if 语句中使用此内容,
这是关于它的文档 Built-序列的ins
You can use
seq_contains
. You need FreeMarker 2.3.1This will output yes if the sequence contains "blue".
And from the comments, if you want this in an if statement
Here is the doco about it Built-ins for sequences