HTML 来自数据库的标签不工作
HTML tag from database not working
我用的是django。这是我来自 table 公司领域描述的数据:
<b>This is description</b>
当我在 django 模板中显示该数据时,未呈现粗体功能。相反,它在页面上显示:
<b>This is description</b>
为什么 html 标签 <b>
没有呈现?
在您的模板中使用 autoescape
,如下所示:
{% autoescape off %}
{{ company.description }}
{% endautoescape %}
我用的是django。这是我来自 table 公司领域描述的数据:
<b>This is description</b>
当我在 django 模板中显示该数据时,未呈现粗体功能。相反,它在页面上显示:
<b>This is description</b>
为什么 html 标签 <b>
没有呈现?
在您的模板中使用 autoescape
,如下所示:
{% autoescape off %}
{{ company.description }}
{% endautoescape %}