码迷,mamicode.com
首页 > 其他好文 > 详细

velocity判断字段为空

时间:2020-03-06 12:58:53      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:ash   版权   als   user   not   public   tools   组合   tool   

方法 1: 对null和false有效

#if( ! $car.fuel )


方法 2: 对null和""有效
#if( "$!car.fuel" == "" )
如果判断字段为空:
#if( "$car.fuel" == "" )


组合 方法 1 and 2,判断字段只能是null
#if ((! $car.fuel) && ("$!car.fuel" == ""))


方法 4: 使用工具检测,详见:http://wiki.apache.org/velocity/NullTool
#if( $null.isNull($car.fuel) )


方法 5: 使用自身方法检测
#if( $car.fuelEmpty )
car类实现isFuelEmpty()方法即可
public boolean isFuelEmpty()
{
  // return true if fuel is empty.
}


方法 6: 使用自定义指令. cf. IfNullDirective, IfNotNullDirective
#ifnull( $car.fuel )
#ifnotnull( $car.fuel )
必须在velocity.properties.中注册:
userdirective = org.apache.velocity.tools.generic.directive.Ifnull
userdirective = org.apache.velocity.tools.generic.directive.Ifnotnull

 

详见:http://wiki.apache.org/velocity/CheckingForNull


————————————————
版权声明:本文为CSDN博主「猿敲月下码」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/thc1987/article/details/52091843

velocity判断字段为空

标签:ash   版权   als   user   not   public   tools   组合   tool   

原文地址:https://www.cnblogs.com/widget90/p/12425751.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!