欢迎来到元素模板ys720.com,本站提供专业的织梦模板PBOOTCMS模板网站模板网站修改/网站仿站
当前位置:主页 > 程序教程 > thinkphp教程 >
thinkphp教程

ThinkPHP3.2.3 volist嵌套循环调用显示教程

(元素模板) / 2020-11-23 16:50
ThinkPHP3.2.3如何使用volist 循环调用显示二级

php页面:

$fatherList = $Document->where('pid=1')->select();
        foreach($fatherList as $n=> $val)
        {
            $fatherList[$n]['childList']=D('Document')->where('category_id=\''.$val['id'].'\'')->select();
                //$Baojia->where('belongto=\''.$val['name'].'\'')->select();
        }
        $this->assign('fatherList',$fatherList);


html页面:

<volist name="fatherList" id='data'>
       <dl>
                 <dt class="active">{$data.title}</dt>
                 <dd style="display:block;">
                      <volist name="data['childList']" id="vo">
                            <a class="active" title="简介" href="http://youlanzihun.blog.163.com/">·{$vo.title}</a>
                     </volist>
                </dd>
      </dl>
</volist>

Copyright @ 2013-2021 元素模板 www.ys720.com All Rights Reserved. 版权所有 元素模板 www.ys720.com