讨论 技术讨论 文库系统首页分类显示

文库系统首页分类显示

yundou 发表于    阅读:395    回复:2

文库系统的这个用法可以指定循环某大类ID下的小类么

@foreach($categoryTree as $c)
{{$c['title']}}
@endforeach


评论
Nil 个人开发者
@foreach($categoryTree as $c)
    {{$c['title']}}
    @if(!empty($c['_child']))
        @foreach($c['_child'] as $cc)
            {{$cc['title']}}
        @endforeach
    @endif
@endforeach


 

@Nil:   这个事读取所有分类,可以指定读取分类id1下面的分类吗

 
1
我来评论
QQ
微信