NVelocity 经验
时间:2011-02-28 来源:clound
在UI 中有几个小经验。
1.输出辅助类
后台put出的结果集往往需要一个辅助类进一步处理,比如字符串截取等。
可以通过如下方法实现:
th.Put("helper", new NameUrl());
UI调用:
$helper.FilterUrl($ProductName,"-")
2.调用的时候字符串连接的处理
#foreach($item in $BottomSiteInfoList) <a href="${helper.FilterUrl($item.InfoTitle,"-")}.html" title='$item.InfoTitle' >$item.InfoTitle</a> :: #end
3.foreach中循环判断
#foreach($item in $TopNumTagList) #if ($item.isBlod=="1") <strong><a href="popular/$helper.FilterUrl($item.HotTag,"-")/">$item.HotTag</a></strong>, #else <a href="popular/$helper.FilterUrl($item.HotTag,"-")/">$item.HotTag</a>, #end #end
相关阅读 更多 +