我想在Django模板中动态更改一些标签,例如:
{% autoescape on %}
{% endautoescape %}
此处启用了自动视图,但我想更改为
{% autoescape off %}
{% endautoescape %}
通过在用户侧提交按钮值。我如何将“开”和“关”视为变量? (django模板语言是否有类似C的宏的机制?)
答案 0 :(得分:0)
如果您想暂时关闭自动景观,请考虑
{{ something | safe }}
其中something
不会被转义。