我想在firstof
中使用with
<div>
{% with variable = firstof variable1 variable2 %}</div>
{{ variable }}
{% endwith %}
</div>
但我当然得到了
你'收到一个无效的令牌:u'variable1'
还有另一种方法可以将这两个标签一起使用吗?
答案 0 :(得分:1)
您不能将firstof
分配给这样的变量,遗憾的是(请参阅this thread on django-users)。你需要写your own custom template tag。