freemaker 的錯誤解決this
不能使用「$ {」在這裏你已經在 freemaker 的表達方式裏面了code
意思就是,你這個 表達式 被 freemaker 的表達式 給包圍了,因此此處的表達式不須要些 ${}it
符號了。io
0down votetable |
Change (or you can do |
將${} 去掉便可。List
好比:數據
<#list myplanppScoreList.planeeMyList as planeeMy>
<div class="border_dotted marginTop_15 padding_15">
<!-- 工做目標 -->
<div style="margin-left: 25px;">
<h4>${planeeMy.hepplaneePo.title}</h4>
<p><h5>類別:
<#assign ptype = planeeMy.hepplaneePo.type>
<#if (ptype==1)>OKR
<#else> 重點工做 </#if> margin
不須要 改成 <#assign ptype = ${planeeMy.hepplaneePo.type}> 的不然會報錯的
通常是被 list 或者是 #if 給包圍了,那麼在 這些裏面 再寫 好比 #if 表達式 就不須要 將後臺的獲取的數據 使用 ${}來表示了。