Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用 django 表单、textarea 小部件和引导程序所见即所得将文本保存到我的数据库中,但是当我尝试仅使用变量名将其呈现到我的模板中时
{{ text }},
我只用这样的 html 标签呈现文本:我想要做的是在 html 中显示格式化的文本。
如果您的数据库字段中有格式化的 HTML,并且您绝对确定它是安全的,那么请尝试safe过滤
safe
{{ tablename.fieldname|safe }}
或者
{{var|safe}}
请参阅文档。