Velocity
木靈弟弟
这个作者很懒,什么都没留下…
展开
-
Velocity 模板标签 #if
#if判断null和空字符串方法(1)判断null#if( $name == null) something code#end(2)判断null或者false#if( !$name) something code#end(3)判断null或者空字符串#if( "$!name" == "") someth转载 2017-12-10 00:34:52 · 3089 阅读 · 0 评论 -
Velocity 模板标签 #foreach
#foreach 判断循环数量#set($count=3) #foreach($i in[1..10]) #foreach($afield in $afields) #if($velocityCount==$count)// #if($velocityCount==3)。。。。 #end #end $count=$count+1转载 2017-12-10 00:36:42 · 2438 阅读 · 0 评论