【发布时间】:2014-05-08 19:43:08
【问题描述】:
我正在将一个遗留项目移植到 django 并且遇到了一个奇怪的数据库状态,一个已被 HTML 转义的归档内容:
<p>
<strong>The &lsquo;Unbundling&rsquo; of Research is a secular, not cyclical, trend as it helps asset managers recognize and reward the value of research more independently</strong>. &nbsp;In 2002, then-New York Attorney General Eliot Spitzer accused major investment banks of promoting companies&#39; shares in their
所以当我把它转储到 djnago 时
<p>{{ object.field | safe }}</p>
然后再次转义输出:
&lt;p&gt;
真是令人沮丧。我是 djnago 的新手,我无法将转义的内容转换为流式 html 以获得这种格式:
<p>
谢谢
【问题讨论】:
标签: python html django django-templates escaping