标签:font tar think each empty index 标签 bsp off
{volist}{/volist}标签遍历
【offset 开始遍历的地方】【length 遍历的长度,循环的次数】【mod 与当前数取余】【empty 为空时显示】【key 循环的次数】
<h1>这是view/index/index.html</h1>
{volist name="list" id="vo" offset="0" length="3" mod="2" empty="这里没有数据" key =‘s‘}
<p>{$mod}:{$s}:{$vo.name}</p>
{/volist}
{foreach}{/foreach}标签遍历
{foreach $list as $vo} 【第一种方式】
<p>{$vo.name}:{$vo.email}</p>
{/foreach}
{foreach name="list" as item="vo"} 【第二种方式】
<p>{$key} : {$vo.name} : {$vo.email}</p> 【$key 数组的下标】
{/foreach}
{for}{/for}标签循环
<body>
{for start="1" end="10" step="2" name="i"} 【start 相当于for循环中的$i=1】【end 相当于for循环中的$i<10】【strp 步进值】【name 默认为i,对应$i】
<p>{$i}</p>
{/for}
</body>
标签:font tar think each empty index 标签 bsp off
原文地址:http://www.cnblogs.com/Caveolae/p/7119897.html