之后,1.7
从1.5
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
),那么我不必以我在上面的代码片段中提到的其他方式进行。