nvelocity/C# 中“if x in array”的等价物是什么?
在修改 Nvelocity C#/.NET 视图模板(.cs 文件)时,我真的缺少 Python 关键字“in”(如“foo in list”)。 用于检查列表/数组成员资格的内置函数是什么?
这就是我的 Python 大脑想要做的:
#set ( $ignore = ['a','b','c'] )
<ul>
#foreach ( $f in $blah )
#if ( $f not in $ignore )
<li> $f </li>
#end
#end
</ul>
但我不确定正确的语法是什么(如果确实有的话)。 我快速浏览了 Velocity 模板指南但没有发现任何有用的东西。
Hacking on a Nvelocity C#/.NET view template (.cs file), I'm really missing the Python keyword "in" (as in, "foo in list"). What is the built-in for checking list/array membership?
This is what my Python brain wants to do:
#set ( $ignore = ['a','b','c'] )
<ul>
#foreach ( $f in $blah )
#if ( $f not in $ignore )
<li> $f </li>
#end
#end
</ul>
But I am not sure what the right syntax is, if there is indeed any. I had a quick look at the Velocity Template Guide but didn't spot anything useful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
您可以在 List 中使用 Contains 函数,所以它应该是
You can use the Contains function in List, so it should be
“包含”确实是我一直在寻找的东西。
...在 NVelocity 模板中:
"Contains" is indeed what I was looking for.
...And in NVelocity template-speak:
如果“ignore”是列表,则其上有 Contains() 方法。
这将使你的代码像这样:
If "ignore" is list, there is Contains() method on it.
That would make your code something like this:
您可以使用 List.Contains
请注意,如果您有一个数组,您可以将该数组转换为 IList,或者创建一个传入该数组的新 List。
You can utilize List.Contains
Note that if you have an array you can cast the array to IList, or create a new List passing the array in.
不确定您将使用哪个版本的 C#,但如果您有 Linq,则可以在数组上使用
Contains
。Not sure what version of C# you'd be using, but if you have Linq then you can use
Contains
on an array.