convert string to html code in django template(在 django 模板中将字符串转换为 html 代码)
问题描述
可能重复:
django:将模板变量渲染为html
我正在开发一个 django 站点,并且我有一个字符串变量,其中包含 html 标记.我需要将该字符串作为模板上的 html 代码读取.
I am developing a django site and I have a string variable which has html tags in it. I need that string to be read as html code on my template.
例如,如果我有一个字符串变量
For instance if I have a string variable
description = "<ul><li>abc</li><li>def</li><li>ghi</li></ul>
"
description = "<ul><li>abc</li><li>def</li><li>ghi</li></ul>
"
当我在模板中调用这个字符串变量时,我希望它显示为
When I call this string variable in my template, I would like it to be displayed as
- abc
- 定义
- ghi
目前它按原样显示字符串.
Currently it shows the string as it is.
非常感谢您对此提供任何帮助.
I would really appreciate any help with this.
推荐答案
{{ description | safe }}
https://docs.djangoproject.com/en/dev/ref/templates/builtins/?from=olddocs#safe
更多
https://docs.djangoproject.com/en/dev/topics/模板/#automatic-html-escaping
这篇关于在 django 模板中将字符串转换为 html 代码的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 django 模板中将字符串转换为 html 代码
- Flexslider 箭头未正确显示 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- 失败的 Canvas 360 jquery 插件 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Fetch API 如何获取响应体? 2022-01-01