1. 程式人生 > >freemarke 基本型別取值(1)

freemarke 基本型別取值(1)

freemarker取值指令

1.常用${var} 語法進行取值

2.對null、不存在物件取值${var!}   變數後面新增!+default(預設值)  防止發生異常

3.取包裝物件的值,通過“點”語法:${User.name}

4.date型別格式獲取${date?String('yyyy-MM-dd')}

5.如何轉移html內容:${var?html}