gpt4 book ai didi

Django 模板对象类型

转载 作者:行者123 更新时间:2023-12-04 00:05:40 26 4
gpt4 key购买 nike

好的,这是我的情况。我有一组通用对象,我正在 django 模板中对其进行迭代。这些对象有许多子类,我想在模板中找出我正在处理的子类。这可能吗?可取?

代码可能看起来类似于(其中 if 语句包含一些虚构的语法):

<table>
<tr>
<th>name</th>
<th>home</th>
</tr>
{% for beer in fridge %}
<tr>
<td>
{{ beer.name }}
</td>
<td>
{% if beer is instance of domestic %}US of A{% endif %}
{% if beer is instance of import %}Somewhere else{% endif %}
</td>
</tr>
{% endfor %}
</table>

最佳答案

这是一个老问题,但 FWIW 您可以使用模板过滤器来做到这一点。

@register.filter
def classname(obj):
return obj.__class__.__name__

然后在您的模板中,您可以执行以下操作:
{% with beer|classname as modelclass %}
{% if modelclass == "Domestic" %}US of A
{% elif modelclass == "Import" %}Somewhere else
{% endif %}
{% endwith %}

关于Django 模板对象类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5427809/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com