为了账号安全,请及时绑定邮箱和手机立即绑定

smarty里面的section 怎样遍历关联的多维数组?

smarty里面的section 怎样遍历关联的多维数组?

GCT1015 2019-04-03 10:07:38
smarty里面的section 怎样遍历关联的多维数组
查看完整描述

3 回答

?
largeQ

TA贡献2039条经验 获得超7个赞

1 $arr
= array(
2
array('id'=>1,'title'=>'title1'),
3
array('id'=>2,'title'=>'title2'),
4
array('id'=>3,'title'=>'title3')
5 );
6
7
$smarty->assign('news',$arr);

1 {section name=sn loop=$news}
2 {if $smarty.section.sn.first}
3
<table>
4
<th>id</th>
5
<th>title</th>
6 {/if}
7
<tr>
8
<td>{$news[sn].id}</td>
9
<td>{$news[sn].title}</td>
10
</tr>
11 {if $smarty.section.sn.last}
12
</table>
13 {/if}
14 {sectionelse}
15 there is no news.
16 {/section}

显示结果如下(是一个表格的样子,以下显示的没有加样式):

1 id title
2 1 title1
3 2 title2
4 3 title3



查看完整回答
反对 回复 2019-04-13
?
富国沪深

TA贡献1790条经验 获得超9个赞

$smarty -> assign("newsreco",$newsreco);

"$newsreco"这里加上双引号的话,值还没有传递就直接被展开成Array了。

另外如果可以用foreach的时候,还是用foreach比较好,section的效率比foreach低很多,这不是一个喜欢与否的问题。

查看完整回答
反对 回复 2019-04-13
  • 3 回答
  • 0 关注
  • 852 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信