0

是否可以在条件内使用 jTemplates$P.imagesPerRow参数{#if}

它为我引发了“未捕获的 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}
4

1 回答 1

1

我没有对此进行测试,这只是一种预感,但请尝试更改此行:

{#if $T.record$index % {$P.imagesPerRow} == 0}

对此:

{#if $T.record$index % $P.imagesPerRow == 0}
于 2011-01-05T09:07:16.893 回答