0
我得到這樣的第一個項目:如何獲得迭代中的第二個項目?
{foreach $sArticle.sBlockPrices as $blockPrice}
{if [email protected]}
First element
{else}
...
{/if}
{/foreach}
我如何獲得第二/第三個項目?
我得到這樣的第一個項目:如何獲得迭代中的第二個項目?
{foreach $sArticle.sBlockPrices as $blockPrice}
{if [email protected]}
First element
{else}
...
{/if}
{/foreach}
我如何獲得第二/第三個項目?
使用的foreach的索引屬性此處引用:http://www.smarty.net/docsv2/en/language.function.foreach.tpl
嘗試是這樣的:
{foreach name=$sArticle.sBlockPrices item=$blockPrice name=blockPrices}
{if $smarty.foreach.blockPrices.index == 2}
...
{/if}
{/foreach}