补上一个官网的例子:
<#macro do_thrice>
<#nested 1>
<#nested 2>
<#nested 3>
</#macro>
<@do_thrice ; x> <#-- user-defined directive uses ";" instead of "as" -->
${x} Anything.
</@do_thrice>
<#macro do_thrice>
<#nested 1>
<#nested 2>
<#nested 3>
</#macro>
<@do_thrice ; x> <#-- user-defined directive uses ";" instead of "as" -->
${x} Anything.
</@do_thrice>
2017-04-02
最新回答 / 江九思
美元符在不同的文件中表示不同的含义,例如在jsp文件中就是el表达式用的,但是在spring配置文件中就是一个占位符,在freemarker中就是freemarker用的了
2017-03-29