吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 1105|回复: 19
收起左侧

[求助] html调用求助

[复制链接]
头像被屏蔽
司徒浩 发表于 2020-7-18 22:42
提示: 作者被禁止或删除 内容自动屏蔽

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

xxsy 发表于 2020-7-18 22:58
沙发,等回复
cube 发表于 2020-7-19 00:54
头像被屏蔽
 楼主| 司徒浩 发表于 2020-7-19 01:25
kof21411 发表于 2020-7-19 08:29
本帖最后由 kof21411 于 2020-7-19 11:27 编辑

加多一个ul就可以,category.children下其实还有一个children
[HTML] 纯文本查看 复制代码
<div class="category-module">        <!--h3>{{heading_title}}</h3-->
        <ul class="list-unstyled">
        {% for category in categories %}
                {% if category.category_id == category_id %} 
                        <li><a href="{{ category.href }}" class=" active">{{ category.name }}</a></li>
                        {% if category.children %}
                                <ul class="list-child">
                                {% for child in category.children %}
									<li><a href="{{ child.href }}" class="{% (child.category_id==child_id) ? 'active':'' %}">{{ child.name }}</a></li>
									<ul class="list-child">
										{% for grandchildren in child.children %}
											<li><a href="{{ grandchildren.href }}" class="">{{ grandchildren.name }}</a></li>
										{% endfor %}
									</ul>
                                {% endfor %}
                                </ul>
                        {% endif %}
                {% else %}
                        <li><a href="{{ category.href }}" class="">{{ category.name }}</a></li>
                {% endif %}
        {% endfor %}
        </ul>
</div>
头像被屏蔽
 楼主| 司徒浩 发表于 2020-7-19 11:07
提示: 作者被禁止或删除 内容自动屏蔽
kof21411 发表于 2020-7-19 11:27
司徒浩 发表于 2020-7-19 11:07
不行,还是不显示第三级菜单

已经修改好了
头像被屏蔽
 楼主| 司徒浩 发表于 2020-7-19 11:31
提示: 作者被禁止或删除 内容自动屏蔽
kof21411 发表于 2020-7-19 13:42
司徒浩 发表于 2020-7-19 11:31
还是不行Fatal error: Uncaught exception 'Twig_Error_Syntax' with message 'A block must start with  ...

这个应该可以了
[PHP] 纯文本查看 复制代码
<div class="category-module">        <!--h3>{{heading_title}}</h3-->
        <ul class="list-unstyled">
        {% for category in categories %}
                {% if category.category_id == category_id %} 
                        <li><a href="{{ category.href }}" class=" active">{{ category.name }}</a></li>
                        {% if category.children %}
                                <ul class="list-child">
                                {% for child in category.children %}
                                    <li><a href="{{ child.href }}" class="{{ (child.category_id==child_id) ? 'active':'' }}">{{ child.name }}</a></li>
                                    <ul class="list-child">
                                        {% for grandchildren in child.children %}
                                            <li><a href="{{ grandchildren.href }}" class="">{{ grandchildren.name }}</a></li>
                                        {% endfor %}
                                    </ul>
                                {% endfor %}
                                </ul>
                        {% endif %}
                {% else %}
                        <li><a href="{{ category.href }}" class="">{{ category.name }}</a></li>
                {% endif %}
        {% endfor %}
        </ul>
</div>
头像被屏蔽
 楼主| 司徒浩 发表于 2020-7-19 13:57
提示: 作者被禁止或删除 内容自动屏蔽
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-26 14:30

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表