如何在django html模板中迭代列表[重复]

Posted

技术标签:

【中文标题】如何在django html模板中迭代列表[重复]【英文标题】:how to iterate list in django html template [duplicate] 【发布时间】:2020-08-01 20:27:30 【问题描述】:

我有一个列表,我在 Django 的模板中放入表格:

<tr><th></th>% for year in years %<th> year </th>% endfor %</tr>

years=[2020,2019,2018,2017,2016,2015,2014,2013....2002,2001,2000]

我只想从列表中打印过去 5 年

years=[2020,2019,2018,2017,2016]

所以我尝试了:

tr><th></th>% for year in years %<th> year[:4] </th>% endfor %</tr>

但是这种方式是行不通的。如何从列表中仅迭代 5 年而不是 20 年。

【问题讨论】:

【参考方案1】:
% for year in years|slice:":5" %

【讨论】:

以上是关于如何在django html模板中迭代列表[重复]的主要内容,如果未能解决你的问题,请参考以下文章

Django 模板迭代和渲染函数返回的列表中的项目

如何在 django 模板中迭代字典的列表值

有没有办法在 django 模板中迭代列表中的列表?

如何判断一个值是 Django 模板中的字符串还是列表?

如何从 Django 模板中的页面迭代 cms 插件实例?

django在模板中迭代dict时遇到问题[重复]