"${" here as you are already in FreeMarker-expression-mode

freemaker 的錯誤解決this

不能使用「$ {」在這裏你已經在 freemaker 的表達方式裏面了code

意思就是,你這個 表達式 被 freemaker 的表達式 給包圍了,因此此處的表達式不須要些 ${}it

符號了。io

0down votetable

Change <#assign a = ${annoCorrente}> to <#assign a = annoCorrente>class

(or you can do <#assign a = "${annoCorrente}"> but this is not recommended)後臺

 將${} 去掉便可。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 表達式 就不須要 將後臺的獲取的數據 使用 ${}來表示了。

 

  1. <#if condition>…  
  2. <#elseif condition>…  
  3. <#elseif condition>…  
  4. <#else> …  
  5. </#if>  
  6.   
  7. 例子以下:  
  8. <#assign age=23>  
  9. <#if (age>60)>老年人  
  10. <#elseif (age>40)>中年人  
  11. <#elseif (age>20)>青年人  
  12. <#else> 少年人  
  13. </#if>  
相關文章
相關標籤/搜索