Django - 将HTML输出转换为变量

时间:2011-01-06 03:14:33

标签: python django django-templates django-views

而不是使用render_to_response将HTML输出发送回浏览器。

我想拍摄结果,生成HTML(使用模板)&将html输出到我的views.py中的变量中。我怎么能这样做?

3 个答案:

答案 0 :(得分:22)

解决了!这样做的方法 -

from django.template.loader import render_to_string
rendered = render_to_string('my_template.html', { 'foo': 'bar' })

感谢ned指向Django docs

答案 1 :(得分:19)

改编自Django docs

from django.template import Context, Template
t = Template("My name is {{ my_name }}.")
c = Context({"my_name": "Adrian"})
output = t.render(c)

答案 2 :(得分:0)

还有一种更简单的方法(如果您需要从render方法中提取html数据):

R = render('template.html', context)
data = str(R.content)