0

有没有办法使用 Django 的模板系统来呈现模板文件并返回三个离散对象?

用例:我正在整理一封要根据一些请求参数呈现的电子邮件。每封电子邮件包含 a) 主题,b) 纯文本版本,c) html 版本。理想情况下,我希望所有这些都来自一个模板文件,而不是三个单独的文件,以便于维护。

有任何想法吗?

4

1 回答 1

2

我会使用 render_to_string,传入要渲染的部分的参数。这将允许您使用一个模板并一次渲染模板的一部分。

from django.template.loader import render_to_string

subject = render_to_string('the-template.html',
    {'section': 'subject', 'subject': 'Foo bar baz'})
plain_text = render_to_string('the-template.html',
    {'section': 'text', 'text': 'Some text'})
html = render_to_string('the-template.html',
    {'section': 'html', 'html': '<p>Some html</p>'})


#the-template.html
{% if section == 'subject' %}
    {{ subject }}
{% elif section == 'text' %}
    {{ plain_text }}
{% else %}
    <h1>A headline, etc.</h1>
    {{ html }}
{% endif %}

您还可以将传入请求中所需的任何值传递给上下文中的模板。

于 2013-02-15T18:36:29.157 回答