velocity如何使用判断是否为空的方法
相信这个问题是很多使用Velocity的朋友所经常碰到的,大家可能非常期望下面这样的代码能够运行:
#if($foo == null)
...
#end实际上这段代码会报错。这是因为Velocity中对null的支持比较特别。总统上说,判断是否为null有下面几种方法:
1. #if (! $foo) 判断$foo为空,判断非空为 #if ($foo)
2. 使用 #ifnull() 或 #ifnotnull()
#ifnull ($foo)
要使用这个特性必须在velocity.properties文件中加入:
userdirective = org.apache.velocity.tools.generic.directive.Ifnull userdirective = org.apache.velocity.tools.generic.directive.Ifnotnull
3. 使用null工具判断
#if($null.isNull($foo))
注意这种方式特别有用,尤其你在需要这个判断作为一个判断字句时,比如我要你判断一个集合为null或为空时只能使用这种方式了:
$if ($null.isNull($mycoll) || $mycoll.size()==0)
更详细的介绍请参考:
http://wiki.apache.org/velocity/VelocityNullSupport
http://wiki.apache.org/velocity/CheckingForNull相关推荐
newfarhui 2019-11-04
upxiaofeng 2019-11-04
ErixHao 2014-06-26
yangjinpingc 2014-11-27
strburnchang 2015-01-17
yangjinpingc 2012-06-07
whileinsist 2013-05-31
xiajlxiajl 2011-07-28
Stephenmu 2017-01-08
hushangjie 2015-04-14
81941231 2019-06-30
88251546 2015-02-16
liuyaping 2013-04-25
沙丁鱼 2012-02-16
87453661 2016-02-16
finalcola 2011-09-22