Freemarker 断线

Freemarker break line

我的模板中有合并字段这样的代码

[#list testList as tl] ${tl} [/#list]

但所有 tl 都打印在彼此附近,但我必须将所有 tl 打印在自己的行上。如果我这样做

[#list testList as tl] 
${tl} 
[/#list]

我得到一个错误,freemarker 需要字符串文字或参数,但得到 [/#list]

找到路了。我创建了三个,而不是一个合并字段,如下所示: [#list testList as tl] ${tl} [/#list]