0
我在我的項目中使用的速度,和我有在列表中的每個項目圖標的列表,但我想根據什麼來從我的數據庫,使我的菜單動態設置德班圖標。速度屬性不工作
<li>
#foreach($item in $navegacao)
<a href="javascript:void(0);" class="with_sub"><img src="#link("resources/theme/mango/img/icons/packs/fugue/16x16/application-form.png")" alt="" height="16" width="16">$item.nome</a>
<ul class="sub" style="display: none;">
#foreach($nav in $item.navegacoes)
<li class="with-icon"><a href="ui_grid.html"><span class="icon icon-th"></span>$nav.nome</a></li>
#end
</ul>
#end
</li>
我有這樣的代碼<span class="icon icon-th"></span>
,但不是icon icon th
,我想成立一個新的類,我想<span class=$nav.classIcon></span>
,但它不工作。我的對象navegacao
和item.navegacoes
是正確的未來在我的會議。
嘗試把引號圍繞'class' attriute,以及使用該正式速度參考符號,即'<跨度類= 「$ {nav.classIcon}」'。如果這沒有幫助,請打印'$ nav.classIcon'的值以查看它是否符合您的期望。 –
謝謝埃文,這是工作,我忘了報價。 –
很划算,我已經發布這作爲一個答案,請你接受嗎?謝謝。 –