关于ECshop循环中自动递增数字方法

2016-09-11 20:39 来源:www.chinab4c.com 作者:ecshop专家

在ECSHOP中通过以下方法一样可以实现:

1
2
3
4
5
6
7
8
<!-- {foreach from=$helps item=help_cat name=help_list} -->
                    <ulCOLOR: #ff0000"> {$smarty.foreach.help_list.iteration}  ">
                                <li>{$help_cat.cat_name}</li>
         <!-- {foreach from=$help_cat.article item=item} -->
                                   <li><a href="{$item.url}" title="{$item.title|escape:html}">{$item.short_title}</a></li>
     <!-- {/foreach} -->
                        </ul>
         <!-- {/foreach} -->

说明:

<!-- {foreach from=$helps item=help_cat name=goods_list} -->

                   <ulCOLOR: #ff0000"> {$smarty.foreach.goods_list.iteration}  ">

红色部分代码 {$smarty.foreach.goods_list.iteration} 就是那个能自动增长的数字,是从1开始循环,每次加1。

注意,红色代码中的  goods_list 要与上面绿色代码一样。不同的调用要不同的命名。

比如网站底部帮助信息,可以是:

<!-- {foreach from=$helps item=help_cat name=help_list} -->
                   <ulCOLOR: #ff0000"> {$smarty.foreach.help_list.iteration}  ">

 

此方法在.dwt/.lbi 文件中都有效。