标签:style blog color ar sp div on log 代码
有时候需要在页面上对list排序,虽然也可以在后台代码中完成,但这个可能要看具体情况。
排序的样本代码如下:
<#list resultMap.topViewList?sort_by("monthlyViewedCount") as tvl>
.............................................
</#list>
monthlyViewedCount是list中对象的属性。默认情况下是升序,如果你要降序:
<#list resultMap.topViewList?sort_by("monthlyViewedCount")?reverse as tvl>
.............................................
</#list>
标签:style blog color ar sp div on log 代码
原文地址:http://www.cnblogs.com/eastson/p/4025717.html