如何在django模板系统中分配变量?
假设Restaurant
是模型:
{% restaurant_id as restaurant.id %}
或{{ restaurant_id as restaurant.id }}
无效。
答案 0 :(得分:78)
您可以使用with template tag,并分配内部模板变量,如下所示:
{% with restaurant_id=restaurant.id %}
... use restaurant_id in this template section ...
{% endwith %}
答案 1 :(得分:17)
注意:您可以在“with”模板标记中使用过滤器:
foo is {{ foo }}
{% with bar=foo|slice'6:9' %}
bar is {{ bar }}
{% endwith %}