This has almost certainly been asked here before, so apologies if it s a duplicate. I can t find the answer though :)
在Django,一般而言,在Django或模板中进行计算是否更为有效?
这里是一个简单的例子。 我想根据愤怒的价值在模板中作一个特别的说明。 可在<代码>views.py上查阅:
# in views.py
description = "small"
if count > 10:
description = "large"
elif count > 5:
description = "medium"
或者,我可以在模板中这样做:
# in template.html
{{ count }}
({% if count > 10 %}large
{% else %}
{% if count > 5 %}medium{% else %}small{% endif %}
{% endif %})
在此情况下,该守则在意见上明显较为简单,因此或许可以回答我的问题:但我确实想知道的是,这是否对模板或观点中的效率有所改变?