Django模板定义变量

时间:2017-11-23 12:09:01

标签: python django jinja2

嘿,我在Django模板中定义变量时遇到问题。我不知道帽子我做错了。

{% set name="World" %}     
<html>
<div>Hello {{name}}!</div>
</html>

Django第1行的块标记无效:'set'。您是否忘记注册或加载此标记?

1 个答案:

答案 0 :(得分:2)

我认为您希望使用&#34;使用&#34;而不是&#34;设置&#34;。

https://docs.djangoproject.com/en/1.11/ref/templates/builtins/#with

{% with name='world'%}
    <html>
    <div>Hello {{name}}!</div>
    </html>
{% endwith %}