接上一篇,轻开B2C电子商务网站用嵌套循环定制展示商品的实例
目的:在一页中显示最多十八件商品,每行显示三件
查询
<!-- 查询数据和显示列表 --> <esql module=base id=list> select we_id,we_num,title,price,sale_url,pubdate from co_sale inner join ( select we_id as tmp_id from co_sale where catalog in @{pPage:cs} order by pubdate desc limit @{pPage:start},@{pPage:length} ) as tm1 on tmp_id=we_id </esql>
嵌套循环定制输出
<for end="@{list:getLength}" step=3> <TR valign=top> <for bags=list start="@{for:getSuffix}" end="@{int:@{for:getSuffix}+3}"> <TD width="@{double:100/3}%"><call>show</call></TD> </for> </TR> <tr height=12><td colspan=10></td></tr> </for>
主循环从0到@{list:getLength}(书包list的长度),步长为step=3,即每次循环显示三件商品。子循环书包为list,循环从@{for:getSuffix}(主循环当前的下标)开始吧,到@{int:@{for:getSuffix}+3}(主循环当前的下标+3)结束,每次均调用<call>show</call>显示list书包当前下标位置的商品
效果
文件在轻开B2C电子商务网站的site/eb目录下(site/eb/list_c.htm),赶快打开看看,亲自实验一下吧
轻开平台资源下载及说明
平台免费下载:http://download.csdn.net/detail/tx18/8381859
最新开发手册下载:http://download.csdn.net/detail/tx18/8411089 开发实例:轻开B2C电子商务网站,免费下载:http://download.csdn.net/detail/tx18/8318585 轻开平台会不定期升级为大家提供更多强大而Easy的功能,请留意最新的开发手册
时间: 2024-11-13 22:51:16