0

我有一个简单的问题。

在我的模板文件中,我有{{ category.photo_set.count }}两次相同的变量。

例如:

        <div class="galleries">

            <div class="row">
            {% for category in categories %}
                <div class="five columns{% cycle " alpha" "" " omega" %}">

                    <div class="image"><a href="{% url gallery.views.category category.slug %}"><img src="{{ MEDIA_URL }}{{ category.image }}" alt="" /></a></div>

                    <h4>{{ category.name }}</h4>       
                    <p>Ilość zdjęć: {{ category.photo_set.count }}</p>  

                    {%  if category.photo_set.count > 0 %}<a class="button" href="{% url gallery.views.category category.slug %}">zobacz</a>{% endif %}
                </div>
            {% endfor %}

            </div>

        </div>

我注意到这段代码对数据库生成了两个完全相同的查询。

30 Query    SELECT COUNT(*) FROM `gallery_photo` WHERE `gallery_photo`.`category_id` = 1
30 Query    SELECT COUNT(*) FROM `gallery_photo` WHERE `gallery_photo`.`category_id` = 1

我怎样才能防止这种情况?

4

1 回答 1

2

这是with模板标签的一个很好的用例:https ://docs.djangoproject.com/en/dev/ref/templates/builtins/#with

你只想用

{% with photo_count=category.photo_set.count %}
...
{{photo_count}}
...
{% endwith %}
于 2012-10-24T15:04:29.590 回答