Freemarker語法整理

1、包含文件,並制定編碼格式

<#include "header.ftl"  encoding="utf-8" />

2、判斷對象是否存在,並遍歷

<#if commonDtoList ??>
  <#list commonDtoList as commonDto>
   <a href="${commonDto.id}">${commonDto.name}</a>
   <#if commonDto_has_next>
    <span>&gt;&gt;</span>
   </#if>
    </#list>
 </#if>

3、將freemarker頁面中的整數轉變爲字符串

${id?c}

4、爲變量賦值

<#assign htmlDirDefault="filesDir">

5、爲變量指定默認值

${htmlDir!"filesDir"}

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章