从数据库加载django模板

时间:2010-03-17 14:02:20

标签: django django-models django-templates

我试图从djangos正常请求 - 响应结构之外的数据库中呈现django模板。但由于django模板的编译方式,它似乎并不重要。我想做这样的事情:

>>> s = Template.objects.get(pk = 123).content
>>> some_method_to_render(s, {'a' : 123, 'b' : 456})
>>> ... the rendered output here ...

你是怎么做到的?

2 个答案:

答案 0 :(得分:32)

这没有什么复杂的,它与请求/响应结构没有任何关系。您需要做的就是将模板字符串传递给django.template.Template构造函数(顺便说一句,我已经更改了模型的名称,以避免混淆):

from django.template import Context, Template
from myapp.models import DbTemplate

s = DbTemplate.objects.get(pk=123).content
tpl = Template(s)
tpl.render(Context(dict(a=123, b=456)))

答案 1 :(得分:9)

有一个可重用的应用程序可以从数据库加载模板:

http://django-dbtemplates.readthedocs.org/en/latest/