ftl使用问题汇总

背景:ftl模板工具类Template,在使用ftl模板生成数据时的问题汇总。

1、list对象数据遍历(&为根据模板生成数据后的分割符)

<#list datas as listData >
<#if listData.targetType == 'type'>
    {
    "age":"0",
    "Name":"${listData.Name!}"
    }&


2、${}嵌套取值及三元运算

${((listData.image)??)?string('http://127.0.0.1:8080'+'${lisimagetData.image}','')}""PicUrl":"${((listData.image)??)?string('http://127.0.0.1:8080'+'${listDaimageta.image}','')}

持续更新中…

你可能感兴趣的:(freemarker)