我想在php条件下使用phptal定义的变量,如下所示:
...
<tal:block define="className php: (photoIndex < 10) ? 'thumbItem thumbColumn1' : ( (photoIndex == 10) ? 'thumbItem thumbColumn2 thumbReset' : 'thumbItem thumbColumn2' )">
<tal:block define="defaultVal photo/isDefault">
<tal:block define="classNameWithIndex php: defaultVal ? '${className} modalMegaPhotoSelect' : '${className}'">
<li tal:attributes="class classNameWithIndex">
...
这里我的输出是"${className}modalMegaPhotoSelect",正如我所期望的那样,它是"thumbItem thumb第1列modalMegaPhotoSelect"-确切的期望无关紧要,这个想法是className应该被视为一个变量-
谢谢你抽出时间。
只需使用className
即可代替'${className}'
。
使用className . ' modalMegaPhotoSelect'
(.
周围有空格)代替'${className} modalMegaPhotoSelect'
。