问题
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