好的,这是我的情况。我有一个通用对象数组,我正在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>
答案 0 :(得分:24)
这是一个老问题,但你可以使用模板过滤器完成此任务。
@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 %}
答案 1 :(得分:8)
你必须通过某种方法来做到这一点。为什么不在模型本身上编写类似display_location()
之类的方法,让它返回在那里渲染的字符串?然后,您可以将{{ beer.display_location }}
放入模板中。
或者,如果你想真的疯了,写一个自定义模板标签,做你想做的事情,但这还有更多工作。