联系官方销售客服

1835022288

028-61286886

开发框架 版主:迅睿框架研发组
添加栏目添加类名 循环不出来
类型:迅睿CMS 更新时间:2021-04-13 10:51:41

求助大佬

  1. 我想循环指定栏目(id为95)下的子栏目,

  2. 给当前对应的栏目添加栏目添加类名

但是我第一个就循环不出来,不知道哪里出了错

            {category module=share pid=95 return=c1}
                {if $c1.child}
                 {category module=share pid=$c1.id return=c2}
                    <a href="#" class="item on">{$c2.name}</a>
                 {/category}
                {/if}
            {/category}


回帖
  • 迅睿框架技术-景攸
    #1楼    迅睿框架技术-景攸
    2021-04-13 10:32:21
    Chrome 0
    {category module=share pid=95 return=c1}
                    {if $c1.child}
                     {category module=share pid=$c1.id return=c2}
                        <a  target="_blank" href="#" class="item on">{$c2.name}</a>
                     {/category}
                    {/if}
                {/category}
    不需要写这句话了
     {if $c1.child}
  • 代码咸鱼
    #2楼    代码咸鱼
    2021-04-13 10:36:39
    Chrome 0
    迅睿框架技术-景攸

                {category module=share pid=95 return=c1}
                     {category module=share pid=$c1.id return=c2}
                        <a href="#" class="item on">{$c2.name}</a>
                     {/category}
                {/category}
    还是不生效呀,大大~
  • 迅睿框架技术-景攸
    #3楼    迅睿框架技术-景攸
    2021-04-13 10:42:36
    Chrome 0
    你为什么要加两层呢
    {category module=share pid=95 return=c2}
                        <a  target="_blank" href="#" class="item on">{$c2.name}</a>
                 
                {/category}
    满意答案
  • 代码咸鱼
    #4楼    代码咸鱼
    2021-04-13 10:51:41
    Chrome 0
    @迅睿框架技术-景攸:ok,解决了,感谢大佬,哈哈哈,我有点木不会变通,看文档写两层我也写两层