How to iterate a queryset list in a django template

荒凉一梦 提交于 2019-12-20 03:05:26

问题


Is there a way to iterate this list of querysets in the template?

[<Director: Roman Polanski>, <Director: Alfred Hitchcock>,
 <Director: Steven Spielberg>, <Director: David Lynch>]

I tried using a list syntax, but the django template language doesn't seem to accept lists, also. Thank you all.


回答1:


Django's template language does of course accept lists!

Here is what the code in your template should look like:

{% for director in director_list %}
    {{ director }}
{% endfor %}

By the way: What you're having here is a queryset (that gets evaluated to a list), not a list of querysets.



来源:https://stackoverflow.com/questions/30127041/how-to-iterate-a-queryset-list-in-a-django-template

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!