之後,從1.5
升級到速度引擎1.7
之後發生了與1.5不同的問題。爲了說明問題,我將不得不顯示的代碼片段:速度:迭代問題
#foreach($someVariable in $someCollection)
#foreach($anotherVariable in $someVariable.$anotherCollection)
$anotherVariable.someAttribute ## This expression print in the browser as is
## but if I do this way
$anotherVariable.get("someAttribute") ## works fine!
#end
#end
這是升級(這是在1.7
)後發生的事情,如果我回滾升級(回遷1.5
),那麼我沒有以我在上面的代碼片段中提到的其他方式來使用它。
'$ anotherVariable'的類型是什麼? –
@EvanHaas它是通用的ArrayList –
ArrayList ??什麼是一些屬性呢? –