而不是使用render_to_response
将HTML输出发送回浏览器。
我想拍摄结果,生成HTML(使用模板)&将html输出到我的views.py
中的变量中。我怎么能这样做?
答案 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)