0

我正在为应用程序构建一个帮助中心,我希望能够显示特定类别中的主题数量。目前,这就是我所拥有的:

{% for cat in cats %}
    <div class="panel panel-default">
        <div class="panel-heading">
            <h4 class="panel-title">
                <a class="accordion" data-toggle="collapse" data-parent="#helpcategories" href="#category{{cat.id}}">
                    {{cat.category}}
                    {% for top in tops %}
                        {% if top.category == cat.id %}
                            <span class="badge pull-right">
                                {{ tops|length }}
                            </span>
                        {% endif %}
                    {% endfor %}
                </a>
            </h4>
        </div>
        <div id="category{{cat.id}}" class="panel-collapse collapse">
            <div class="panel-body">
                <ul class="nav nav-pills nav-stacked">
                    {% for top in tops %}
                        {% if top.category == cat.id %}
                            <li><a href="#" class="list-group-item">{{top.title}}</a></li>
                        {% endif %}
                    {% endfor %}
                </ul>
            </div>
        </div>
    </div>
{% endfor %}

如您所见,我使用 Twig 将主题分类到各自的类别中。您还可以看到,在我想要显示我正在使用的类别中的主题数量的区域中{{tops|length}}。但是,这会返回主题的总数,而不是每个类别。

如何让 Twig 计算某个主题在某个类别中出现的次数?

4

1 回答 1

2

我建议不要使用您的模板语言来构建这些计数,而是在您访问模板之前在您的应用程序中执行它,因为如果您决定分页,这将使您能够在分页之前显示总计数。

于 2013-09-26T15:15:42.870 回答