Django TemplateSyntaxError Could not parse the remainder: '()'
Posted Python,Docker,Linux
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django TemplateSyntaxError Could not parse the remainder: '()'相关的知识,希望对你有一定的参考价值。
返回的数据是列表集合,如
n [5]: a = set() In [6]: a.add((1, 3)) In [7]: a Out[7]: {(1, 3)}
在模板中使用方式如下:
{% for archive in archive_lists %} <li> <a href="/archive/{{ archive.0 }}/{{ archive.1 }} ">{{ archive }}</a> </li> {% endfor %}
参考见:
http://stackoverflow.com/questions/5231171/django-templatesyntaxerror-could-not-parse-the-remainder
以上是关于Django TemplateSyntaxError Could not parse the remainder: '()'的主要内容,如果未能解决你的问题,请参考以下文章