是否可以在$P.imagesPerRow
条件中使用模板'{#if}
参数?
它为我提出了“Uncaught 12”例外。
{#foreach $T as record}
{#if $T.record$index % {$P.imagesPerRow} == 0}
</tr>
<tr>
{#/if}
<td class='image-preview-cell' style='width: {$P.cellWidth}; height: {$P.cellHeight}'>
<img src='{$T.record.url}' title='{$T.record.title}' alt='{$T.record.title}'/>
</td>
{#/for}
答案 0 :(得分:1)
我没有对此进行测试,这只是一种预感,但请尝试更改此行:
{#if $T.record$index % {$P.imagesPerRow} == 0}
到此:
{#if $T.record$index % $P.imagesPerRow == 0}