如何将html放入django模板变量中?

发布于 2024-11-18 11:53:32 字数 492 浏览 1 评论 0原文

我想在模板变量中放入 html 片段。像这样的东西:

>>>t = django.template.Template("<ul>{{ title }}<\ul>: {{ story }}")
>>>c = django.template.Context({"title":"This is the title",r"Line 1.<br />Line 2."})
>>>print t.render(c)
<ul>This is the title<\ul>: Line 1.&lt;br /&gt;Line 2.

我期望像这样的输出:

<ul>This is the title<\ul>: Line 1.<br />Line 2.

如何在模板变量中放入 HTML?

I want to put in pieces of html in template variables. Something like this:

>>>t = django.template.Template("<ul>{{ title }}<\ul>: {{ story }}")
>>>c = django.template.Context({"title":"This is the title",r"Line 1.<br />Line 2."})
>>>print t.render(c)
<ul>This is the title<\ul>: Line 1.<br />Line 2.

I expected an output something like this:

<ul>This is the title<\ul>: Line 1.<br />Line 2.

How can I put in HTML within the template variables?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你的笑 2024-11-25 11:53:32

使用 safe 过滤器,例如:

<块引用>
<块引用>

t = django.template.Template("{{ title|safe }}<\ul>: {{ Story|safe }}")


Use the safe filter, e.g.:

t = django.template.Template("{{ title|safe }}<\ul>: {{ story|safe }}")

春夜浅 2024-11-25 11:53:32

使用 safe 过滤器抑制编码。

Use the safe filter to inhibit encoding.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文