2012-10-11 58 views
2

中定義多個條件是否有我下面什麼做一個選擇:塔爾條件,同一行

... 
<div class="abc" tal:condition="this/condition1"> 
    <div class="abc2" tal:condition="this/condition2"> 
    ... 
    </div> 
</div> 
... 

如:

... 
<div class="abc" tal:condition="this/condition1 AND this/condition2"> 
... 
</div> 
... 
+0

我拿它沒有辦法,或者是問題不清楚? – Pumpkin

回答

4

這是一個有點傻,但沒有邏輯與中TALES。

您可以使用php:前綴:

<div tal:condition="php:this.condition1 AND this['condition2']"> 

,但請記住,與php:你需要使用類型相關的語法(.的對象,[]數組,因爲/變得師)。