标签: python django django-templates django-forms
出于某种原因,当我渲染一个包含+符号的模板时,它会消失,没有任何错误或任何消失。
我正在渲染它
rc = RequestContext(request, template_context_dict) html_content = smart_str(Template(updated_template_source).render(rc))
当我检查请求和rc时它仍然存在,但是在它被渲染之后它就消失了。
由于
答案 0 :(得分:0)
也许这与autoescape有关。 也许试试
{% autoescape on %} {{ body }} {% endautoescape %}
并查看它是否仍然无法呈现。