码迷,mamicode.com
首页 > Web开发 > 详细

ThinkPHP学习 volist标签高级应用之多重嵌套循环、隔行变色(转)

时间:2015-10-27 14:46:40      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:

Action代码:

 

[php]
 
  1.   public function index(){  
  2. $prod = I("get.prod_en");  
  3. $id = I("get.id", 0, "int");  
  4. if ($prod == ""){  
  5.     $serviceProduct = array();//多重循环遍历的数组  
[php] 
 
  1. //数据保存在两张表中,这里通过循环初始化$serviceProduct数组  
  2.             $service = M("product_class")->order("oid ASC")->select();  
  3.             for ($i = 0; $i < count($service); $i++)  
  4.             {  
  5.                 array_push($serviceProduct, array("srvName"=>$service[$i]["pc_cn"], "product"=>M("product")->where("prod_class_id=".$service[$i]["pcid"])->order("oid ASC")->select()));  
  6.             }  
[php] 
 
  1. //如果要在模板中输出变量,必须在在控制器中把变量传递给模板,系统提供了assign方法对模板变量赋  
  2. 值,无论何种变量类型都统一使用assign赋值。  
  3.             $this->assign("serviceProduct", $serviceProduct);  
  4.             $this->display();  
  5.         }else{  
  6.             if ($id > 0){  
  7.                 $this->display("detail");  
  8.             }else{  
  9.                 $this->assign(‘prod_en‘, $prod);  
  10.                 $clsList = M("question_class")->order("oid ASC")->select();  
  11.                 $this->assign(‘clsList‘, $clsList);  
  12.                   
  13.                 $qusList = M("question")->order("oid ASC")->select();  
  14.                 $this->assign(‘qusList‘, $qusList);  
  15.                 $this->display("list");  
  16.             }  
  17.         }  
  18.     }  

模板代码:

 

 

[html] 
 
  1. <volist name="serviceProduct" id="sp" key="i">  
  2.     <dl class="dlist odd">  
  3.         <dt>{$sp.srvName}</dt>  
  4.         <volist name="sp.product" id="pd" key="j">  
  5.             <dd><href="/index.php/question?prod_en={$pd.prod_en}">{$pd.prod_cn}</a></dd>  
  6.             <if condition="$j lt count($sp[‘product‘])">  
  7.             <dd>|</dd>  
  8.             </if>  
  9.         </volist>  
  10.         <if condition="count($sp[‘product‘]) EQ 0">  
  11.             <dd</dd>  
  12.         </if>  
  13.     </dl>  
  14. </volist>  

当使用多重嵌套循环时,需要为每一个volist指定key值,通过

[html] 
 
  1. <if condition="$j lt count($sp[‘product‘])">  

判断是否为数组中的最后一个元素。

 

Volist标签实现隔行变色

方法1:

 

[html] 
 
  1. <volist name="newslist" id="vo" mod="2">    
  2.  <li <eq name="mod" value="0"style="background-color:#000;"</eq>><span<href="{$vo.url}">{$vo.title}</a></span><span>{$vo.edittime|date="Y年m月d日",###}</span><span>{$vo.author}</span></li>    
  3. </volist>  

 

volist 中的 mod 参数相当于指定一个频率,系统会将当前的实际记录对 mod 参数值求余(PHP中的%运算符)运算。而配合判断标签(如eq标签),就可以按照频率控制输出的数据或数据显示的格式。

方法2:

[html] 
 
  1. <volist name="newslist" id="vo" key="k">    
  2.  <li <if condition="$k%2== ‘0‘"style="background-color:#000;"</if >><span<href="{$vo.url}">{$vo.title}</a></span><span> {$vo.edittime|date="Y年m月d日",###}</span><span>{$vo.author}</span></li>    
  3.  </volist>    

下面再列出一个 Volist 循环table里的tr、td的实例:

 

[html] 
 
    1. <tr bgcolor="#FBFCF1">    
    2.  <volist name="siteurl" id="site" mod="4">    
    3. <eq name="mod" value="0"></tr><tr bgcolor="#FBFCF1"></eq>    
    4. <td width="25%"><href="{$site.url}" target="_blank">{$site.name}</a></td>    
    5. </volist>    
    6. </tr>    

ThinkPHP学习 volist标签高级应用之多重嵌套循环、隔行变色(转)

标签:

原文地址:http://www.cnblogs.com/snowhite/p/4913924.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!