{% set name = '张三' %} # 可以在当前模板中使用name变量 {{ name }}
{% with name = '张三' %} # 可以在with语句中使用name变量 {{ name }} {% endwith %}