嘿,我在Django模板中定义变量时遇到问题。我不知道帽子我做错了。
{% set name="World" %}
<html>
<div>Hello {{name}}!</div>
</html>
Django第1行的块标记无效:'set'。您是否忘记注册或加载此标记?
答案 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 %}